-
-
Notifications
You must be signed in to change notification settings - Fork 182
/
Dockerfile
25 lines (20 loc) · 855 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# NOTE: This Docker image is for development purposes only.
FROM python:3.9-slim-buster
RUN apt update && \
apt install --yes zlib1g-dev libjpeg-dev gdal-bin libproj-dev \
libgeos-dev libspatialite-dev libsqlite3-mod-spatialite \
sqlite3 libsqlite3-dev openssl libssl-dev && \
rm -rf /var/lib/apt/lists/* /root/.cache/pip/* /tmp/*
COPY requirements-test.txt requirements.txt /opt/openwisp/
RUN pip install -r /opt/openwisp/requirements.txt && \
pip install -r /opt/openwisp/requirements-test.txt && \
pip install redis && \
rm -rf /var/lib/apt/lists/* /root/.cache/pip/* /tmp/*
ADD . /opt/openwisp
RUN pip install -U /opt/openwisp && \
rm -rf /var/lib/apt/lists/* /root/.cache/pip/* /tmp/*
WORKDIR /opt/openwisp/tests/
ENV NAME=openwisp-controller \
PYTHONBUFFERED=1
CMD ["sh", "docker-entrypoint.sh"]
EXPOSE 8000