Spaces:
Running
Running
File size: 423 Bytes
9a7a261 1dfeea6 9a7a261 1dfeea6 9a7a261 1dfeea6 9a7a261 1dfeea6 5120e77 1dfeea6 9a7a261 1dfeea6 a974556 1dfeea6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
#
# SPDX-FileCopyrightText: Hadad <hadad@linuxmail.org>
# SPDX-License-Identifier: Apache-2.0
#
# Use a specific container image for the sever
FROM hadadrjt/ai:latest
# Set the main working directory inside the container
WORKDIR /node
# Copy all files into the container
COPY . .
# Install all dependencies
RUN npm install
# Open the port so the web can be accessed
EXPOSE 7860
# Start the server
CMD ["npm", "start"] |