11 lines
258 B
Docker
11 lines
258 B
Docker
|
# syntax=docker/dockerfile:1
|
||
|
|
||
|
FROM python:3.10-bullseye
|
||
|
WORKDIR .
|
||
|
COPY . .
|
||
|
#RUN pip3 install --upgrade pip
|
||
|
#RUN pip3 install -r requirements.txt
|
||
|
|
||
|
#CMD [ "./colab_automator.sh"]
|
||
|
#CMD ["python3", "-u", "main.py"]
|
||
|
CMD ["python3", "-u", "account_server_test.py"]
|