Skip to content

Commit

Permalink
Agrego zlib a la instalación en Dockerfile
Browse files Browse the repository at this point in the history
Agrego zlib y zlib-dev en el Dockerfile para el frontend.

Esto se debe a que cuando se realiza la instalación, al levantar
el reactjs, se produce un error, dónde se pide zlib como depedencia.
  • Loading branch information
eamanu committed Mar 5, 2020
1 parent c469bd6 commit 0a9eee8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Expand Up @@ -5,7 +5,7 @@ FROM node:12.12.0-alpine as frontend

## Install system dependencies
RUN apk --update add --no-cache \
git gcc make autoconf automake musl-dev \
git gcc make autoconf automake musl-dev zlib zlib-dev\
&& rm -rf /var/cache/apk/* /var/lib/apt/lists/* /tmp/* /var/tmp/*

# Set working directory
Expand Down

0 comments on commit 0a9eee8

Please sign in to comment.