We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd53e18 commit 14c0544Copy full SHA for 14c0544
Dockerfile
@@ -10,13 +10,15 @@ FROM base AS lint
10
ENV WORKDIR=/app
11
WORKDIR ${WORKDIR}
12
13
-COPY ./src ${WORKDIR}/src
14
RUN apk add --update --no-cache make nodejs npm
15
RUN apk add --update --no-cache yamllint
16
17
RUN npm install -g --ignore-scripts markdownlint-cli
18
RUN npm install -g --ignore-scripts pyright
19
+# [!TIP] Use a bind-mount to lint and test "current" code against this stage
20
+COPY ./ ${WORKDIR}/
21
+
22
###############################################################################
23
FROM base AS development
24
0 commit comments