Files
website-old/Dockerfile
2021-08-24 14:38:51 +02:00

16 lines
167 B
Docker
Executable File

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