Skip to content

Commit 64fa679

Browse files
committed
chore: remove inline comments from Dockerfile
1 parent 149c8e9 commit 64fa679

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

Dockerfile

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,12 @@ RUN npm ci
88

99
# Tailwind source --> final CSS
1010
# (adjust the paths if you store Tailwind input elsewhere)
11-
COPY tailwind.config.js ./ # Tailwind config
12-
COPY src/static/css/ ./src/static/css/ # Tailwind input file(s)
13-
RUN npm run build:css # writes ./src/static/css/site.css
11+
# Tailwind config
12+
COPY tailwind.config.js ./
13+
# Tailwind input file(s)
14+
COPY src/static/css/ ./src/static/css/
15+
# writes ./src/static/css/site.css
16+
RUN npm run build:css
1417

1518

1619
# ---------- Stage 2: Install Python dependencies -----------------

0 commit comments

Comments
 (0)