20 lines
348 B
Docker
20 lines
348 B
Docker
FROM node:18
|
|
|
|
RUN mkdir -p /opt/seasonedShows
|
|
|
|
WORKDIR /opt/seasonedShows
|
|
|
|
COPY seasoned_api/ .
|
|
COPY package.json .
|
|
|
|
RUN apt update
|
|
RUN apt install node-pre-gyp -y
|
|
RUN yarn
|
|
RUN cp conf/development.json.example conf/development.json
|
|
|
|
EXPOSE 31459
|
|
|
|
CMD ["yarn", "start"]
|
|
|
|
LABEL org.opencontainers.image.source https://github.com/kevinmidboe/seasoned
|