Skip to content

Commit

Permalink
chore: remove unused things
Browse files Browse the repository at this point in the history
  • Loading branch information
jd-apprentice committed Jun 30, 2024
1 parent c084134 commit ad80da5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 1 addition & 3 deletions docker/app.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM app_name:latest AS deps
FROM debian:stable

RUN apt-get update && apt-get install -y \
curl \
## Add your dependencies here
apt-get clean && \
rm -rf /var/lib/apt/lists/*

Expand All @@ -14,7 +14,5 @@ RUN chmod +x /usr/local/bin/docker-entrypoint.sh

COPY --from=deps /app/app_name ./app_name

RUN ldconfig

ENTRYPOINT [ "/usr/local/bin/docker-entrypoint.sh" ]
CMD [ "/base/app_name" ]
2 changes: 2 additions & 0 deletions docker/docker-entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/bin/bash

## Do your stuff here

exec "$@"

0 comments on commit ad80da5

Please sign in to comment.