Skip to content

Commit

Permalink
🐳 fixed typo in Dockerfile preventing app to build correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
faburem committed Dec 2, 2024
1 parent 45ac6be commit 3d1ade6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ ENV DISABLE_CLIENT_STATS true
ENV METEOR_DISABLE_OPTIMISTIC_CACHING 1
RUN meteor build /build/ --server-only --architecture os.linux.x86_64

FROM node:20.11-alpine
FROM node:22.11-alpine
RUN apk --no-cache add \
bash \
curl \
Expand All @@ -38,7 +38,7 @@ RUN rm -rf /app/bundle/programs/server/npm/node_modules/moment/src/locale
RUN find /app/bundle/programs/server/npm/node_modules/astronomia/data/ -type f -not -name "deltat.js" -or -name "vsop87Bearth.js" -delete
RUN find /app/bundle/programs/server/npm/node_modules/astronomia/lib/data/ -type f -not -name "deltat.js" -or -name "vsop87Bearth.js" -delete

FROM node:20.11-alpine
FROM node:22.11-alpine
RUN apk --no-cache add \
bash \
ca-certificates
Expand Down

0 comments on commit 3d1ade6

Please sign in to comment.