Basic docker image structure.
This commit is contained in:
commit
b5e5e6493a
4 changed files with 11 additions and 0 deletions
8
Dockerfile
Normal file
8
Dockerfile
Normal 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
1
check
Executable file
|
@ -0,0 +1 @@
|
|||
#!/usr/bin/env sh
|
1
in
Executable file
1
in
Executable file
|
@ -0,0 +1 @@
|
|||
#!/usr/bin/env sh
|
1
out
Executable file
1
out
Executable file
|
@ -0,0 +1 @@
|
|||
#!/usr/bin/env sh
|
Loading…
Reference in a new issue