SteveCelticus commited on
Commit
2fd557a
·
verified ·
1 Parent(s): 85db436

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -1,6 +1,6 @@
1
  FROM python:3.12-slim
2
 
3
- # WORKDIR /app
4
 
5
  RUN apt-get update && \
6
  apt-get install -y git && \
@@ -12,7 +12,7 @@ RUN git clone https://github.com/SteveCelticus/httpsstream.git
12
 
13
  # Copy the current directory contents into the container at /app
14
  # (including run.py, filmpertutti.py, and requirements.txt)
15
- # ADD . /app
16
 
17
  # Install any needed packages specified in requirements.txt
18
  RUN pip install --no-cache-dir -r requirements.txt
 
1
  FROM python:3.12-slim
2
 
3
+ WORKDIR /app
4
 
5
  RUN apt-get update && \
6
  apt-get install -y git && \
 
12
 
13
  # Copy the current directory contents into the container at /app
14
  # (including run.py, filmpertutti.py, and requirements.txt)
15
+ ADD . /app
16
 
17
  # Install any needed packages specified in requirements.txt
18
  RUN pip install --no-cache-dir -r requirements.txt