FROM alpine:latest
WORKDIR /app

COPY ./target/x86_64-unknown-linux-musl/release/ /app
COPY ./about.html /app/about.html

CMD [ "./pastabble" ]