beer_data/base.Dockerfile
Andrew Ridgway 1470f0979a
Some checks failed
Build and Push Image / Build and push image (push) Has been cancelled
initial
2024-09-07 23:24:32 +10:00

12 lines
298 B
Docker

FROM python:3.10 AS beer_base_image
WORKDIR /beer_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