Session_2 / Dockerfile
Hans-Tz's picture
Upload 4 files
f8713c0 verified
Raw
History Blame Contribute Delete
231 Bytes
FROM node:18
WORKDIR /app
COPY package*.json ./
RUN npm install --production
# Copy everything including .env
COPY . .
# Make sure .env is available
ENV NODE_ENV=production
EXPOSE 7860
CMD ["node", "server.js"]