FROM alpine:latest
RUN apk add --no-cache python3
COPY challenge.png /challenge/challenge.png
COPY server.py /server.py
EXPOSE 8080
CMD ["python3", "/server.py"]
