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