This repository has been archived on 2023-09-24. You can view files and clone it, but cannot push or open issues or pull requests.
takahe/docker/Dockerfile

30 lines
563 B
Docker
Raw Normal View History

2022-11-13 06:10:06 +01:00
# Build stage
FROM python:3.11.0-buster as builder
2022-11-09 05:05:51 +01:00
RUN mkdir -p /takahe
RUN python -m venv /takahe/.venv
RUN apt-get update && apt-get -y install libpq-dev python3-dev
WORKDIR /takahe
COPY requirements.txt requirements.txt
RUN . /takahe/.venv/bin/activate \
&& pip install --upgrade pip \
&& pip install --upgrade -r requirements.txt
2022-11-13 06:10:06 +01:00
# Final image stage
2022-11-09 05:05:51 +01:00
2022-11-13 06:10:06 +01:00
FROM python:3.11.0-slim-buster
2022-11-09 05:05:51 +01:00
RUN apt-get update && apt-get install -y libpq5
COPY --from=builder /takahe /takahe
COPY . /takahe
WORKDIR /takahe
EXPOSE 8000
2022-11-13 06:10:06 +01:00
CMD ["/takahe/docker/start.sh"]