Docker: in between commit

This commit is contained in:
Nico Schottelius 2022-02-03 12:47:21 +01:00
parent 14e9109f03
commit ae5a2c4865
2 changed files with 16 additions and 2 deletions

View File

@ -1,7 +1,13 @@
# This image used for CI.
FROM debian:latest
MAINTAINER Timothée Floure <timothee.floure@ungleich.ch>
FROM alpine:3.15
MAINTAINER ungleich <foss@ungleich.ch>
RUN pip install lektor
RUN mkdir /build /data
COPY . /data
FROM nginx:
RUN apt-get update
RUN apt-get install -y make python3-pip imagemagick openssh-client rsync git

8
Dockerfile.debian Normal file
View File

@ -0,0 +1,8 @@
# This image used for CI.
FROM debian:latest
MAINTAINER Timothée Floure <timothee.floure@ungleich.ch>
RUN apt-get update
RUN apt-get install -y make python3-pip imagemagick openssh-client rsync git
RUN pip3 install git+https://github.com/lektor/lektor/