You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
FROM node:16
|
|
|
|
RUN mkdir /app
|
|
|
|
COPY package.json /app
|
|
COPY yarn.lock /app
|
|
|
|
RUN cd /app && yarn install
|
|
|
|
COPY . /app
|
|
|
|
RUN rm -rf /app/.env
|
|
RUN touch /app/.env
|
|
|
|
WORKDIR /app
|
|
CMD ["node", "index.js"]
|