# Start from the alpine base image
FROM jeanblanchard/alpine-glibc:latest
RUN apk add --no-cache tzdata
# Set the working directory
WORKDIR /

# No need to copy the binary; it will be mounted at runtime
# Specify the entrypoint, which will be set to the binary via docker-compose
ENTRYPOINT []
