Files
website-old/Dockerfile
2022-07-02 23:23:54 +02:00

16 lines
176 B
Docker
Executable File

FROM node:16-alpine3.11
RUN mkdir -p /usr/src/website
WORKDIR /usr/src/website
COPY . /usr/src/website
RUN yarn install
RUN yarn build
EXPOSE 3333
CMD ["yarn", "start"]