main
Ricard Illa 2021-02-15 14:48:21 +01:00
parent 220c6c5527
commit 92e39001be
3 changed files with 31 additions and 4 deletions

View File

@ -1,4 +1,4 @@
images=backup buku ddclient gitolite gitolite-pystagit git-daemon rss-bridge syncthing tasks tor vdirsyncer wallabag xandikos
images=backup buku ddclient gitolite gitolite-pystagit git-daemon rss-bridge sassc syncthing tasks tor vdirsyncer xandikos
.PHONY: all $(images)
all: $(images)
@ -25,6 +25,9 @@ git-daemon:
rss-bridge:
$(BUILD)
sassc:
$(BUILD)
syncthing:
$(BUILD)
@ -39,6 +42,3 @@ vdirsyncer:
xandikos:
$(BUILD)
wallabag:
$(BUILD)

17
sassc/Dockerfile Normal file
View File

@ -0,0 +1,17 @@
FROM alpine:3.13
RUN apk add --update --no-cache sassc && \
addgroup \
--gid 10001 \
sassc && \
adduser \
--uid 10000 \
--home /data \
--ingroup sassc \
--disabled-password \
--shell /sbin/nologin \
sassc
WORKDIR /data
USER sassc
ENTRYPOINT ["sassc"]

10
sassc/Makefile Normal file
View File

@ -0,0 +1,10 @@
USERNAME = rilla
IMG_NAME = sassc
.PHONY: build build-nc
build: Dockerfile
docker build -t $(USERNAME)/$(IMG_NAME) .
build-nc: Dockerfile
docker build --no-cache -t $(USERNAME)/$(IMG_NAME) .