interactive intro to open social at-me.zzstoatzz.io

fix: copy static directory to docker runtime stage

+3
+3
Dockerfile
··· 33 # Copy the built binary 34 COPY --from=builder /app/target/release/at-me /app/at-me 35 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