Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 815 Bytes

README.md

File metadata and controls

39 lines (30 loc) · 815 Bytes

docker-meteor

This is a very simple Docker image to use for Meteor.
Based on debian:bullseye-slim.

Quickstart

Get the correct Node version by running:

docker run --rm ghcr.io/chneau/meteor:3.0 meteor node --version
# v20.15.1

Add a Dockerfile to your project:

FROM ghcr.io/chneau/meteor:3.0 AS builder
WORKDIR /app
COPY --chown=meteor:meteor ./package*.json .
RUN meteor npm install
COPY --chown=meteor:meteor . .
RUN meteor build --server-only --directory bundle
RUN cd bundle/bundle/programs/server && meteor npm install

FROM node:20-bullseye-slim AS final
RUN useradd --no-create-home --shell /bin/bash meteor
USER meteor
WORKDIR /app
COPY --from=builder /app/bundle/bundle .
CMD exec node main.js

Add a .dockerignore:

node_modules
.meteor/local