11 lines
319 B
Docker
11 lines
319 B
Docker
FROM proxy.docker.dataekb.ru/local_cache/oracleclient_docker:stable
|
|
ENV PYTHONUNBUFFERED=1
|
|
|
|
EXPOSE 8000
|
|
|
|
WORKDIR /code/app
|
|
COPY ./requirements.txt /code/requirements.txt
|
|
COPY ./app /code/app
|
|
|
|
RUN python3 -m pip install --upgrade pip
|
|
RUN echo Y | python3 -m pip install --no-cache-dir --upgrade -r /code/requirements.txt |