Files
test/giwtf/mock-obs/Dockerfile
Antonello Tartamo 0c1d423e91 test podman
2026-02-19 09:22:32 +01:00

15 lines
268 B
Docker

# Use a base Python image
FROM registry.suse.com/bci/python:3.11
# Set the working directory
WORKDIR /app
# Copy the server script
COPY server.py .
# Expose the port the server will run on
EXPOSE 8080
# Command to run the server
CMD ["python3", "-u", "server.py"]