yashxx07 commited on
Commit
a5f0d3d
·
verified ·
1 Parent(s): 4ef43fa

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -4
Dockerfile CHANGED
@@ -1,13 +1,13 @@
1
- FROM python:3.9-alpine
2
 
3
  #ENV PATH="/home/user/.local/bin:$PATH"
4
 
5
  WORKDIR /app
6
 
7
  # Install necessary dependencies with apk
8
- RUN apk update && apk add --no-cache build-base cairo-dev pango-dev ffmpeg texlive
9
-
10
- RUN apk add --no-cache texlive-standalone
11
 
12
  COPY ./requirements.txt requirements.txt
13
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
 
1
+ FROM winamd64/python:3
2
 
3
  #ENV PATH="/home/user/.local/bin:$PATH"
4
 
5
  WORKDIR /app
6
 
7
  # Install necessary dependencies with apk
8
+ RUN winget install python
9
+ RUN winget install ffmpeg
10
+ RUN winget install MiKTeX.MiKTeX
11
 
12
  COPY ./requirements.txt requirements.txt
13
  RUN pip install --no-cache-dir --upgrade -r requirements.txt