Skip to content

Commit eaaf048

Browse files
authored
Merge pull request #3732 from nukmuk/patch-1
Remove Spanish translations from English material
2 parents ccfc934 + f6bfc73 commit eaaf048

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/content/12/en/part12c.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ With multi-stage builds, a tried and true solution like [Nginx](https://en.wikip
129129
Let's use the previous Dockerfile but change the FROM to include the name of the stage:
130130

131131
```Dockerfile
132-
# El primer FROM ahora es una etapa llamada build-stage
132+
# The first FROM is now a stage called build-stage
133133
# highlight-start
134134
FROM node:20 AS build-stage
135135
# highlight-end
@@ -142,13 +142,13 @@ RUN npm ci
142142

143143
RUN npm run build
144144

145-
# Esta es una nueva etapa, todo lo anterior a esta linea ha desaparecido, excepto por los archivos que queremos COPIAR
145+
# This is a new stage, everything before this is gone, except for the files that we want to COPY
146146
# highlight-start
147147
FROM nginx:1.25-alpine
148148
# highlight-end
149149

150-
# COPIA el directorio dist de build-stage a /usr/share/nginx/html
151-
# El destino fue encontrado en la pagina de Docker hub
150+
# COPY the directory dist from the build-stage to /usr/share/nginx/html
151+
# The target location here was found from the Docker hub page
152152
# highlight-start
153153
COPY --from=build-stage /usr/src/app/dist /usr/share/nginx/html
154154
# highlight-end

0 commit comments

Comments
 (0)