homemade_gpt / Dockerfile
ULMER Louis (T0240644)
add application file
260934b
raw
history blame
273 Bytes
FROM python:3.9
WORKDIR /code
ENV HTTP_PROXY=http://10.31.255.65:8080
ENV HTTPS_PROXY=http://10.31.255.65:8080
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . .
ENTRYPOINT ["sh","./launch.sh"]