We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8040b7a commit f861003Copy full SHA for f861003
Dockerfile
@@ -41,14 +41,14 @@ FROM dev AS prod-build
41
COPY ./src src/
42
RUN npx tsc
43
44
+FROM bun AS dev_container
45
+RUN apt-get update \
46
+ && apt-get install -y git make
47
+
48
FROM node AS prod
49
COPY --from=prod-deps /app/node_modules node_modules/
50
COPY --from=prod-build /app/build/ build/
51
COPY ./src/static build/src/static/
52
COPY ./src/instrument.mjs ./
53
COPY ./fly-run.sh ./
54
CMD ["/bin/bash", "fly-run.sh"]
-
-FROM bun AS dev_container
-RUN apt-get update \
- && apt-get install -y git make
0 commit comments