diff --git a/Dockerfile b/Dockerfile index 7aa9280..b0ab34e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,6 @@ RUN cargo build --release COPY src /app/src COPY templates /app/templates -COPY src /app/src RUN cargo build --release @@ -20,6 +19,8 @@ from alpine as runtime COPY --from=builder /app/target/release/tickets /app/tickets +COPY static /app/static + EXPOSE 8080 CMD ["/app/tickets"] \ No newline at end of file