Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix dockerimage #272

Merged
merged 1 commit into from
Dec 12, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Check out https://hub.docker.com/_/node to select a new base image
FROM node:14-slim
FROM node:18.19

RUN apt-get update && apt-get install -y git curl wget vim htop tree
# Set to a non-root built-in user `node`
Expand All @@ -19,7 +19,6 @@ RUN npm ci

# Bundle app source code
COPY --chown=node DEVELOPING.md .
COPY --chown=node tsconfig.json .
COPY --chown=node .dockerignore .
COPY --chown=node .env .
COPY --chown=node .env.test .
Expand Down Expand Up @@ -63,7 +62,6 @@ COPY --chown=node src/index.ts .
COPY --chown=node src/migrate.ts .
COPY --chown=node src/openapi-spec.ts .
COPY --chown=node src/sequence.ts .
COPY --chown=node src/tsconfig.json .
COPY --chown=node src/dependency-injection-bindings.ts .
COPY --chown=node src/dependency-injection-handler.ts .
COPY --chown=node src ./src
Expand Down