30 lines
795 B
Docker
30 lines
795 B
Docker
FROM debian:stretch-slim
|
|
|
|
# Install dependencies
|
|
RUN export DEBIAN_FRONTEND=noninteractive && \
|
|
apt-get update --yes --fix-missing && apt-get upgrade --yes && \
|
|
apt-get install --yes --no-install-recommends \
|
|
apt-utils \
|
|
bash \
|
|
coreutils \
|
|
python-pip \
|
|
python-virtualenv \
|
|
python-dev \
|
|
python-setuptools
|
|
|
|
# Install pelican and dependencies
|
|
COPY files/start.sh /start.sh
|
|
COPY files/requirements.txt requirements.txt
|
|
RUN pip install wheel
|
|
RUN pip install -r requirements.txt
|
|
|
|
# Cleanup
|
|
RUN apt-get autoremove --yes $build_dependencies && apt-get autoremove --yes && \
|
|
apt-get clean --yes && rm -rf /var/lib/apt/* /var/cache/apt/* /root/.cache
|
|
|
|
EXPOSE 8000
|
|
WORKDIR /srv/pelican
|
|
VOLUME ["/srv/pelican"]
|
|
CMD /start.sh restart 8000
|
|
|