Skip to content

Commit f0294a3

Browse files
author
AI-Agent
committed
AI generated Dockerfile via OpenAI
1 parent 5f00196 commit f0294a3

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

Dockerfile

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
FROM python:3.11-slim
2+
3+
WORKDIR /app
4+
5+
ENV PYTHONUNBUFFERED=1
6+
ENV PYTHONDONTWRITEBYTECODE=1
7+
8+
COPY . .
9+
10+
EXPOSE ${PORT:-8000}
11+
12+
CMD ["sh", "-c", "python3 area_of_rectangle.py <height> [<width>]"]

0 commit comments

Comments
 (0)