Skip to content

Commit e7b28c9

Browse files
authored
i18n(fr): Update recipes/docker.mdx from withastro#12551 (withastro#12553)
1 parent 038b4f2 commit e7b28c9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/content/docs/fr/recipes/docker.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ RUN npm run build
3737
ENV HOST=0.0.0.0
3838
ENV PORT=4321
3939
EXPOSE 4321
40-
CMD node ./dist/server/entry.mjs
40+
CMD ["node", "./dist/server/entry.mjs"]
4141
```
4242

4343
:::tip[Gardez cela à l’esprit]
@@ -164,7 +164,7 @@ COPY --from=build /app/dist ./dist
164164
ENV HOST=0.0.0.0
165165
ENV PORT=4321
166166
EXPOSE 4321
167-
CMD node ./dist/server/entry.mjs
167+
CMD ["node", "./dist/server/entry.mjs"]
168168
```
169169

170170
## Méthode

0 commit comments

Comments
 (0)