-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add test case * Detect Meteor runtime and add start cmd * install some packages * make it so
- Loading branch information
1 parent
5180e24
commit df4f45a
Showing
7 changed files
with
1,272 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
/.git | ||
/node_modules | ||
.dockerignore | ||
.env | ||
Dockerfile | ||
fly.toml | ||
.meteor/local |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
[email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# syntax = docker/dockerfile:1 | ||
|
||
# Adjust NODE_VERSION as desired | ||
ARG NODE_VERSION=xxx | ||
FROM node:${NODE_VERSION}-slim as base | ||
|
||
LABEL fly_launch_runtime="Meteor" | ||
|
||
# Meteor app lives here | ||
WORKDIR /app | ||
|
||
# Set production environment | ||
ENV NODE_ENV="production" | ||
|
||
|
||
# Throw-away build stage to reduce size of final image | ||
FROM base as build | ||
|
||
# Install packages needed to build node modules | ||
RUN apt-get update -qq && \ | ||
apt-get install --no-install-recommends -y build-essential curl g++ make node-gyp pkg-config python-is-python3 python3-pip | ||
|
||
# Copy the .meteor/release file to the container | ||
COPY .meteor/release /home/meteor/.meteor/release | ||
|
||
ENV METEOR_ALLOW_SUPERUSER=1 | ||
|
||
# Extract the Meteor release version and install Meteor | ||
RUN RELEASE=$(awk -F'@' '{print $2}' /home/meteor/.meteor/release) && curl https://install.meteor.com/\?release\=$RELEASE | sh | ||
# Install node modules | ||
COPY --link package-lock.json package.json ./ | ||
RUN npm ci | ||
|
||
RUN meteor npm install | ||
# Copy application code | ||
COPY --link . . | ||
RUN meteor build --server-only --directory bundle | ||
|
||
# https://github.com/meteor/meteor/issues/12932 | ||
RUN chmod 777 bundle/bundle/programs/server/npm-shrinkwrap.json | ||
|
||
RUN cd bundle/bundle/programs/server && meteor npm install | ||
|
||
|
||
# Final stage for app image | ||
FROM base | ||
|
||
# Copy built application | ||
COPY --from=build /app/bundle/bundle /app | ||
|
||
# Start the server by default, this can be overwritten at runtime | ||
EXPOSE 3000 | ||
CMD [ "node", "main.js" ] |
Oops, something went wrong.