Initial import 🐳

This commit is contained in:
3wc
2021-08-17 23:08:01 +02:00
commit 551c1f203a
2 changed files with 46 additions and 0 deletions

11
Dockerfile Normal file
View File

@ -0,0 +1,11 @@
# Syntax=docker/dockerfile:1
FROM alpine:3.12
WORKDIR /app
RUN apk add --no-cache npm \
&& npm install --global sass
WORKDIR /data
ENTRYPOINT ["npx", "sass"]