Skip to content

Commit

Permalink
Added bash & updated entrypoint
Browse files Browse the repository at this point in the history
  • Loading branch information
Knight, Eddie committed Feb 10, 2022
1 parent 44484c7 commit eafe980
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
FROM golang:1.14.4-alpine AS probr-build

RUN apk update && apk upgrade && apk add --update bash
RUN apk add --update make git build-base
RUN apk add --no-cache \
python3 \
Expand Down Expand Up @@ -39,4 +40,4 @@ ENV PROBR_WRITE_DIRECTORY /probr/run
# Service packs may be overridden for debugging by mounting to /probr/cmd/bin
# Entrypoint may be overridden by mounting to /probr/entrypoint.sh
WORKDIR /probr/run
ENTRYPOINT ["entrypoint.sh"]
ENTRYPOINT [ "/probr/entrypoint.sh" ]
1 change: 1 addition & 0 deletions entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/bin/bash
# If using AWS, credentials are required
# If not using AWS, this has no effect
mkdir ~/.aws
Expand Down

0 comments on commit eafe980

Please sign in to comment.