Spaces:
Paused
Paused
Update Dockerfile
Browse files- Dockerfile +3 -2
Dockerfile
CHANGED
|
@@ -1,14 +1,15 @@
|
|
| 1 |
# Use an official Python runtime as a parent image
|
|
|
|
| 2 |
ARG TMDB_KEY
|
| 3 |
ARG DOMAIN
|
| 4 |
-
FROM python:3.10-slim-buster
|
| 5 |
-
|
| 6 |
# Set the working directory in the container to /app
|
| 7 |
WORKDIR /app
|
| 8 |
|
| 9 |
# Copy the current directory contents into the container at /app
|
| 10 |
# (including run.py, filmpertutti.py, and requirements.txt)
|
| 11 |
ADD . /app
|
|
|
|
|
|
|
| 12 |
|
| 13 |
# Install any needed packages specified in requirements.txt
|
| 14 |
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
| 1 |
# Use an official Python runtime as a parent image
|
| 2 |
+
FROM python:3.10-slim-buster
|
| 3 |
ARG TMDB_KEY
|
| 4 |
ARG DOMAIN
|
|
|
|
|
|
|
| 5 |
# Set the working directory in the container to /app
|
| 6 |
WORKDIR /app
|
| 7 |
|
| 8 |
# Copy the current directory contents into the container at /app
|
| 9 |
# (including run.py, filmpertutti.py, and requirements.txt)
|
| 10 |
ADD . /app
|
| 11 |
+
ENV TMDB_KEY\
|
| 12 |
+
DOMAIN
|
| 13 |
|
| 14 |
# Install any needed packages specified in requirements.txt
|
| 15 |
RUN pip install --no-cache-dir -r requirements.txt
|