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

fix: copy static directory to docker runtime stage

+3
+3
Dockerfile
··· 33 33 # Copy the built binary 34 34 COPY --from=builder /app/target/release/at-me /app/at-me 35 35 36 + # Copy static files 37 + COPY --from=builder /app/static /app/static 38 + 36 39 # Expose port 37 40 EXPOSE 8080 38 41