Basic docker image structure.

This commit is contained in:
redxef 2022-05-05 23:23:10 +02:00
commit b5e5e6493a
Signed by: redxef
GPG key ID: 7DAC3AA211CBD921
4 changed files with 11 additions and 0 deletions

8
Dockerfile Normal file
View file

@ -0,0 +1,8 @@
FROM alpine:latest
RUN apk --no-cache add openssh-client jq \
&& adduser --no-create-home --uid 1000 -D user \
&& mkdir -p /opt/resource/
USER 1000:1000
WORKDIR /tmp/
COPY check in out /opt/resource/

1
check Executable file
View file

@ -0,0 +1 @@
#!/usr/bin/env sh

1
in Executable file
View file

@ -0,0 +1 @@
#!/usr/bin/env sh

1
out Executable file
View file

@ -0,0 +1 @@
#!/usr/bin/env sh