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 4deadf3 commit 6a9334aCopy full SHA for 6a9334a
Dockerfile
@@ -1,12 +1,14 @@
1
FROM php:7.4-apache
2
3
-# Habilitar repositorios adicionales (universe) para dependencias
+# Actualizar los repositorios
4
RUN apt-get update -y && \
5
- apt-get install -y software-properties-common && \
6
- add-apt-repository universe && \
+ apt-get install -y software-properties-common
+
7
+# Agregar repositorios adicionales
8
+RUN add-apt-repository universe && \
9
apt-get update -y
10
-# Instalar dependencias necesarias
11
+# Instalar las dependencias necesarias
12
RUN apt-get install -y \
13
libmysqlclient-dev \
14
libonig-dev \
@@ -27,4 +29,3 @@ EXPOSE 80
27
29
28
30
# Comando para iniciar Apache
31
CMD ["apache2-foreground"]
-
0 commit comments