Files
artdanj-api/Dockerfile
2022-01-15 21:58:07 +01:00

22 lines
262 B
Docker
Executable File

FROM node:16-alpine3.11
RUN mkdir -p /usr/src/athena
WORKDIR /usr/src/athena
COPY . /usr/src/athena
RUN yarn install
RUN yarn build
RUN mv spotify.json build
WORKDIR /usr/src/athena/build
RUN yarn install --production
EXPOSE 5555
CMD ["yarn", "start"]