Files
2024-04-14 18:29:59 +03:00

18 lines
263 B
Docker

# Use a Node.js base image
FROM node:19-alpine
# 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 ["sh", "start.sh"]