mirror of
https://github.com/PawanOsman/ChatGPT.git
synced 2026-07-18 08:05:57 +02:00
b0bed1ed53
Signed-off-by: K8sCat <k8scat@gmail.com>
18 lines
258 B
Docker
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"]
|