made the dockerfile usable to our usecase
This commit is contained in:
parent
106c1b8726
commit
265761766f
21
Dockerfile
21
Dockerfile
|
@ -8,33 +8,20 @@ WORKDIR /usr/src/app
|
||||||
# install dependencies into temp folder
|
# install dependencies into temp folder
|
||||||
# this will cache them and speed up future builds
|
# this will cache them and speed up future builds
|
||||||
FROM base AS install
|
FROM base AS install
|
||||||
RUN mkdir -p /temp/dev
|
|
||||||
COPY package.json bun.lockb /temp/dev/
|
|
||||||
RUN cd /temp/dev && bun install
|
|
||||||
|
|
||||||
# install with --production (exclude devDependencies)
|
# install with --production (exclude devDependencies)
|
||||||
RUN mkdir -p /temp/prod
|
RUN mkdir -p /temp/prod
|
||||||
COPY package.json bun.lockb /temp/prod/
|
COPY package.json bun.lockb /temp/prod/
|
||||||
RUN cd /temp/prod && bun install --production
|
RUN cd /temp/prod && bun install --production
|
||||||
|
|
||||||
# copy node_modules from temp folder
|
# Copy production dependencies and source code into final image
|
||||||
# then copy all (non-ignored) project files into the image
|
|
||||||
FROM install AS prerelease
|
|
||||||
COPY --from=install /temp/dev/node_modules node_modules
|
|
||||||
COPY . .
|
|
||||||
|
|
||||||
# [optional] tests & build
|
|
||||||
# ENV NODE_ENV=production
|
|
||||||
# RUN bun test
|
|
||||||
# RUN bun run build
|
|
||||||
|
|
||||||
# copy production dependencies and source code into final image
|
|
||||||
FROM base AS release
|
FROM base AS release
|
||||||
COPY --from=install /temp/prod/node_modules node_modules
|
COPY --from=install /temp/prod/node_modules node_modules
|
||||||
COPY --from=prerelease /usr/src/app/index.ts .
|
COPY --from=install /usr/src/app/src ./src
|
||||||
COPY --from=prerelease /usr/src/app/package.json .
|
COPY --from=install /usr/src/app/package.json .
|
||||||
|
|
||||||
# run the app
|
# run the app
|
||||||
USER bun
|
USER bun
|
||||||
|
ENV NODE_ENV=production
|
||||||
EXPOSE 8080/tcp
|
EXPOSE 8080/tcp
|
||||||
CMD ["bun", "run", "start"]
|
CMD ["bun", "run", "start"]
|
||||||
|
|
|
@ -3,6 +3,10 @@ import { startApp } from "./app";
|
||||||
|
|
||||||
await startApp();
|
await startApp();
|
||||||
|
|
||||||
|
// This try carch is to prevent hot reload from making the process die due to coliding entries
|
||||||
try {
|
try {
|
||||||
await populateDatabase();
|
// Not insert test data into production
|
||||||
|
if (process.env.NODE_ENV != "production"){
|
||||||
|
await populateDatabase();
|
||||||
|
}
|
||||||
} catch {}
|
} catch {}
|
||||||
|
|
Loading…
Reference in New Issue