Merge pull request #8 from williamkray/master

add dockerfile which builds a cinny container served by nginx
This commit is contained in:
Ajay Bura 2021-07-29 11:16:45 +05:30 committed by GitHub
commit e69f344ab2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

21
Dockerfile Normal file
View file

@ -0,0 +1,21 @@
## Builder
FROM node:14-alpine as builder
WORKDIR /src
COPY . /src
RUN npm install \
&& npm run build
## App
FROM nginx:alpine
COPY --from=builder /src/dist /app
COPY --from=builder /src/olm.wasm /app/olm.wasm
# Insert wasm type into Nginx mime.types file so they load correctly.
RUN sed -i '3i\ \ \ \ application/wasm wasm\;' /etc/nginx/mime.types
RUN rm -rf /usr/share/nginx/html \
&& ln -s /app /usr/share/nginx/html