This commit is contained in:
Nite07 2024-09-18 11:44:53 +08:00
parent f0d096b4d6
commit 14807d599e
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.venv

View File

@ -8,7 +8,7 @@ WORKDIR /app
COPY . /app COPY . /app
# Install any needed packages specified in requirements.txt # Install any needed packages specified in requirements.txt
RUN pip install --no-cache-dir -r requirements.txt RUN pip install -r requirements.txt
# Make port 10000 available to the world outside this container # Make port 10000 available to the world outside this container
EXPOSE 10000 EXPOSE 10000