One-For-All-Server / Dockerfile
hprasath's picture
Update Dockerfile
cb28fab verified
raw
history blame
368 Bytes
FROM node:16
# Set working directory
WORKDIR /code
# Copy Node.js application files
COPY ./index.js /code/index.js
COPY ./package.json /code/package.json
COPY ./package-lock.json /code/package-lock.json
# Install Node.js dependencies
RUN npm install
# Copy Python application files
# Expose port
EXPOSE 7860
# Start Node.js application
CMD ["node", "index.js"]