2008robocode-crypto/code-generation-system
0
1FROM python:3.12-slim2 3WORKDIR /app4 5COPY requirements.txt ./6RUN pip install --no-cache-dir -r requirements.txt7 8COPY . ./9 10ENV PORT=808011EXPOSE 808012 13CMD ["gunicorn", "web.app:app", "-b", "0.0.0.0:8080", "--workers", "2"]14 