Skip to content

Commit

Permalink
Add new deepwell configs to Dockerfile.
Browse files Browse the repository at this point in the history
  • Loading branch information
emmiegit committed Apr 23, 2024
1 parent cbc62f7 commit da54473
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion install/aws/dev/docker/api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ RUN apk update
RUN apk add --no-cache curl
COPY --from=rust /src/deepwell/target/release/deepwell /usr/local/bin/deepwell
COPY ./install/files/api/health-check.sh /bin/wikijump-health-check
COPY ./install/files/dev/deepwell.toml /etc/deepwell.toml
COPY ./locales/fluent /opt/locales/fluent

USER daemon
CMD ["/usr/local/bin/deepwell"]
CMD ["/usr/local/bin/deepwell", "/etc/deepwell.toml"]
3 changes: 2 additions & 1 deletion install/aws/prod/docker/api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ RUN apk update
RUN apk add --no-cache curl
COPY --from=rust /src/deepwell/target/release/deepwell /usr/local/bin/deepwell
COPY ./install/files/api/health-check.sh /bin/wikijump-health-check
COPY ./install/files/prod/deepwell.toml /etc/deepwell.toml
COPY ./locales/fluent /opt/locales/fluent

USER daemon
CMD ["/usr/local/bin/deepwell"]
CMD ["/usr/local/bin/deepwell", "/etc/deepwell.toml"]

0 comments on commit da54473

Please sign in to comment.