initial Dockerfile commit

This commit is contained in:
Jochen Welzel 2021-01-18 14:09:30 +01:00
commit 0e82faf171
2 changed files with 13 additions and 0 deletions

10
Dockerfile Normal file
View File

@ -0,0 +1,10 @@
FROM alpine:latest
MAINTAINER Jochen Welzel
RUN apk update && apk upgrade && apk add bash && apk add openssh-client
COPY scp_and_reload.sh /
RUN chmod 755 /scp_and_reload.sh
ENTRYPOINT ["/scp_and_reload.sh"]

3
scp_and_reload.sh Normal file
View File

@ -0,0 +1,3 @@
#!/bin/bash