mirror of
https://github.com/IT4Change/ohmyform-ui.git
synced 2025-12-13 01:35:51 +00:00
13 lines
145 B
Docker
13 lines
145 B
Docker
FROM node:12-alpine
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY . ./
|
|
|
|
RUN yarn install --frozen-lock-file
|
|
RUN yarn build
|
|
|
|
ENV PORT=4000
|
|
|
|
CMD [ "yarn", "start" ]
|