move base image to alpine
This commit is contained in:
parent
2ea35a2fc3
commit
5ec5b75558
18
Dockerfile
18
Dockerfile
@ -1,31 +1,29 @@
|
|||||||
# Radicale Dockerfile
|
# Radicale Dockerfile
|
||||||
#
|
#
|
||||||
# VERSION 0.2
|
# VERSION 0.3
|
||||||
|
|
||||||
FROM debian:latest
|
FROM alpine:latest
|
||||||
|
|
||||||
ENV DEBIAN_FRONTEND noninteractive
|
|
||||||
|
|
||||||
# Base packages
|
# Base packages
|
||||||
RUN apt-get update -qq && apt-get upgrade -y -qq
|
RUN apk update && \
|
||||||
RUN apt-get install -y --no-install-recommends git ca-certificates python2.7 python-setuptools python-pip \
|
apk upgrade && \
|
||||||
build-essential libffi-dev python-dev
|
apk add ca-certificates git python python-dev py-setuptools py-pip build-base libffi-dev
|
||||||
|
|
||||||
# Radicale installation
|
# Radicale installation
|
||||||
RUN pip install passlib bcrypt
|
RUN pip install passlib bcrypt
|
||||||
RUN mkdir -p /data/config && \
|
RUN mkdir -p /data/config && \
|
||||||
cd /data
|
cd /data
|
||||||
COPY . /data/radicale
|
COPY . /data/radicale
|
||||||
COPY config /data/config
|
COPY config /data/config
|
||||||
RUN cd /data/radicale && python2.7 setup.py install
|
RUN cd /data/radicale && python2.7 setup.py install
|
||||||
|
|
||||||
# User
|
# User
|
||||||
RUN useradd -d /home/radicale -m radicale && \
|
RUN adduser -h /home/radicale -D radicale && \
|
||||||
mkdir -p /home/radicale/.config && \
|
mkdir -p /home/radicale/.config && \
|
||||||
ln -s /data/config /home/radicale/.config/radicale && \
|
ln -s /data/config /home/radicale/.config/radicale && \
|
||||||
chown -R radicale:radicale /data/config && \
|
chown -R radicale:radicale /data/config && \
|
||||||
chown -R radicale:radicale /home/radicale
|
chown -R radicale:radicale /home/radicale
|
||||||
|
|
||||||
USER radicale
|
USER radicale
|
||||||
WORKDIR /home/radicale
|
WORKDIR /home/radicale
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user