-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
54 lines (41 loc) · 1.16 KB
/
Dockerfile
File metadata and controls
54 lines (41 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
ARG RUST_VERSION=1.71.0
ARG NODE_MAJOR=20
FROM rust:${RUST_VERSION}-slim-bullseye AS rust
WORKDIR /app
COPY . .
RUN apt-get update -y && \
apt-get install -y pkg-config libssl-dev
RUN --mount=type=bind,source=src,target=src \
--mount=type=bind,source=Cargo.toml,target=Cargo.toml \
--mount=type=bind,source=Cargo.lock,target=Cargo.lock \
--mount=type=cache,target=/app/target/ \
--mount=type=cache,target=/usr/local/cargo/registry/ \
<<EOF
set -e
cargo build --locked --release
cp ./target/release/johnfreeman-dev /bin/johnfreeman-dev
EOF
FROM node:${NODE_MAJOR} AS node
WORKDIR /app
COPY . .
RUN npm install
RUN npx tailwindcss -i ./assets/css/app.css -o ./public/css/app.css --minify
FROM debian:bullseye-slim AS final
ENV PUBLIC_DIR=/var/www
ARG UID=10001
RUN adduser \
--disabled-password \
--gecos "" \
--home "/nonexistent" \
--shell "/sbin/nologin" \
--no-create-home \
--uid "${UID}" \
appuser
RUN mkdir /var/www
RUN chown -R appuser:appuser /var/www
RUN chmod -R 0755 /var/www
USER appuser
COPY --from=rust /bin/johnfreeman-dev /bin/
COPY --from=node /app/public /var/www
EXPOSE 3000
CMD ["/bin/johnfreeman-dev"]