mirror of
https://github.com/wger-project/wger.git
synced 2026-02-18 00:17:51 +01:00
60 lines
1.4 KiB
Docker
60 lines
1.4 KiB
Docker
#
|
|
# Docker image for wger development
|
|
#
|
|
# Please consult the README for usage
|
|
#
|
|
# Note: you MUST build this image from the projec's root!
|
|
# docker build -f extras/docker/development/Dockerfile --tag wger/devel .
|
|
#
|
|
# Run the container:
|
|
# docker run -ti -v /path/to/this/checkout:/home/wger/src --name wger.devel --publish 8000:8000 wger/devel
|
|
|
|
##########
|
|
# Builder
|
|
##########
|
|
FROM ubuntu:20.04 as builder
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install --no-install-recommends -y \
|
|
build-essential \
|
|
python3-dev \
|
|
python3-pip \
|
|
python3-wheel \
|
|
git \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Build the necessary python wheels
|
|
COPY requirements* ./
|
|
RUN pip3 wheel --no-cache-dir --wheel-dir /wheels -r requirements_prod.txt
|
|
|
|
|
|
|
|
########
|
|
# Final
|
|
########
|
|
FROM wger/base:2.0-dev
|
|
LABEL maintainer="Roland Geider <roland@geider.net>"
|
|
ARG DOCKER_DIR=./extras/docker/development
|
|
EXPOSE 8000
|
|
|
|
|
|
# Set up the application
|
|
WORKDIR /home/wger/src
|
|
COPY --chown=wger:wger . /home/wger/src
|
|
COPY --from=builder /wheels /wheels
|
|
COPY ${DOCKER_DIR}/settings.py /home/wger/src
|
|
COPY ${DOCKER_DIR}/settings.py /tmp/
|
|
COPY ${DOCKER_DIR}/entrypoint.sh /home/wger/entrypoint.sh
|
|
RUN chmod +x /home/wger/entrypoint.sh
|
|
RUN pip3 install --no-cache /wheels/* \
|
|
&& python3 setup.py develop
|
|
|
|
RUN chown -R wger:wger .
|
|
|
|
USER wger
|
|
RUN mkdir ~/media \
|
|
&& mkdir ~/static \
|
|
&& mkdir ~/db/
|
|
|
|
CMD ["/home/wger/entrypoint.sh"]
|