Skip to content

Commit

Permalink
Merge pull request #28 from ericparton/master
Browse files Browse the repository at this point in the history
Create the flyway group in the alpine image
  • Loading branch information
juliahayward authored Aug 18, 2020
2 parents 19b02b1 + 83003d3 commit 85b60f9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ FROM openjdk:8-jre-alpine
RUN apk --no-cache add --update bash openssl

# Add the flyway user and step in the directory
RUN adduser -S -h /flyway -D flyway
RUN addgroup flyway \
&& adduser -S -h /flyway -D -G flyway flyway
WORKDIR /flyway

# Change to the flyway user
Expand Down

0 comments on commit 85b60f9

Please sign in to comment.