navpan2 commited on
Commit
e813120
·
1 Parent(s): ce28e59

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -20
Dockerfile DELETED
@@ -1,20 +0,0 @@
1
- FROM python:3.10
2
-
3
- RUN useradd -m -u 1000 user
4
- USER user
5
- ENV PATH="/home/user/.local/bin:${PATH}"
6
- WORKDIR /app
7
- COPY --chown=user . /app
8
- USER root
9
-
10
- RUN apt-get update && apt-get install -y wget unzip && \
11
- wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb && \
12
- apt install -y ./google-chrome-stable_current_amd64.deb && \
13
- rm google-chrome-stable_current_amd64.deb && \
14
- apt-get clean
15
-
16
- USER user
17
- RUN pip install --trusted-host pypi.python.org -r requirements.txt
18
- COPY --chown=user . .
19
-
20
- CMD ["python", "main.py" ]