debug
All checks were successful
the build was successful

This commit is contained in:
ston1th 2019-01-18 22:39:06 +01:00
commit b0ee4defe8
2 changed files with 2 additions and 2 deletions

View file

@ -1,5 +1,5 @@
FROM alpine
ADD /go/src/db /db
ADD db /db
RUN echo -e "root:x:0:0:root:/:\nappuser:x:1000:1000:appuser:/:" > /etc/passwd
RUN echo -e "root:x:0:root\nappuser:x:1000:" > /etc/group
FROM scratch

View file

@ -1,5 +1,5 @@
FROM alpine
ADD /go/src/srv /srv
ADD srv /srv
RUN echo -e "root:x:0:0:root:/:\nappuser:x:1000:1000:appuser:/:" > /etc/passwd
RUN echo -e "root:x:0:root\nappuser:x:1000:" > /etc/group
FROM scratch