We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e7b8e2 commit 5f32749Copy full SHA for 5f32749
docker/Dockerfile
@@ -1,4 +1,4 @@
1
-FROM python:3.10.9-slim as base
+FROM python:3.10.9-slim AS base
2
3
LABEL org.opencontainers.image.source="https://github.com/ZiRO-Bot/Z3R0"
4
LABEL org.opencontainers.image.description="A multi-purpose open-source discord bot"
@@ -22,7 +22,7 @@ RUN apt-get update && apt-get upgrade -y \
22
&& python -m venv /venv
23
24
# ---
25
-FROM base as builder
+FROM base AS builder
26
27
WORKDIR /app
28
@@ -32,7 +32,7 @@ ADD src/ ./src
32
RUN poetry install --without test,dev -E postgresql -E mysql -E voice -E speedup
33
34
35
-FROM base as final
+FROM base AS final
36
37
38
0 commit comments