wine_data/base.Dockerfile
Andrew Ridgway ac1975315c
Some checks failed
Build and Push Image / Build and push image (push) Has been cancelled
initial
2024-10-29 14:36:29 +10:00

12 lines
298 B
Docker

FROM python:3.10 AS beer_base_image
WORKDIR /wine_data
COPY requirements.txt .
RUN apt-get update -y && apt-get upgrade -y && apt-get install -y libsasl2-dev python-dev-is-python3 libldap2-dev libssl-dev
RUN pip install --upgrade pip
RUN pip --default-timeout=1000 install -r requirements.txt