tangled
alpha
login
or
join now
zzstoatzz.io
/
at-me
25
fork
atom
interactive intro to open social
at-me.zzstoatzz.io
25
fork
atom
overview
issues
1
pulls
pipelines
fix: copy static directory to docker runtime stage
zzstoatzz.io
5 months ago
a0c1926c
be270e37
+3
1 changed file
expand all
collapse all
unified
split
Dockerfile
+3
Dockerfile
···
33
# Copy the built binary
34
COPY --from=builder /app/target/release/at-me /app/at-me
35
0
0
0
36
# Expose port
37
EXPOSE 8080
38
···
33
# Copy the built binary
34
COPY --from=builder /app/target/release/at-me /app/at-me
35
36
+
# Copy static files
37
+
COPY --from=builder /app/static /app/static
38
+
39
# Expose port
40
EXPOSE 8080
41