FROM scratch
COPY target/x84_64-unknown-linux-musl/release/vade /app/vade
EXPOSE 8080
WORKDIR app
RUN touch data.db
RUN ls -lh
CMD ["./vade"]