Files
PawanOsman-ChatGPT/Dockerfile
T
2024-04-11 10:17:09 +08:00

18 lines
258 B
Docker

# Use a Node.js base image
FROM node:19
# Set the working directory
WORKDIR /app
# Copy source code
COPY . .
# Install dependencies
RUN npm install
# Expose the port the app runs on
EXPOSE 3040
# Command to run the start script
CMD ["bash", "start.sh"]