atlasbot/Dockerfile

17 lines
298 B
Docker
Raw Normal View History

2026-02-04 14:47:16 -03:00
FROM registry.bstein.dev/bstein/atlasbot-base:0.1.0 AS base
2026-01-28 11:46:52 -03:00
ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1
WORKDIR /app
COPY atlasbot /app/atlasbot
2026-02-03 19:08:26 -03:00
FROM base AS test
COPY tests /app/tests
2026-02-03 19:32:14 -03:00
COPY scripts /app/scripts
2026-02-03 19:08:26 -03:00
FROM base AS runtime
2026-01-28 11:46:52 -03:00
EXPOSE 8090
CMD ["python", "-m", "atlasbot.main"]