add container file
This commit is contained in:
parent
c1dc85ec72
commit
145569fcc2
16
Containerfile
Normal file
16
Containerfile
Normal file
@ -0,0 +1,16 @@
|
||||
# originally from https://github.com/henryclw/matrix.to/blob/dev-docker/Dockerfile
|
||||
FROM node:lts-alpine
|
||||
|
||||
RUN apk update
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY . ./
|
||||
|
||||
RUN yarn
|
||||
|
||||
RUN yarn build
|
||||
|
||||
EXPOSE 5000
|
||||
|
||||
ENTRYPOINT ["yarn", "start"]
|
Loading…
Reference in New Issue
Block a user