Spaces:
Build error
Build error
Demosthene-OR
commited on
Commit
•
5e7565c
1
Parent(s):
6cf381f
Update Dockerfile
Browse files- Dockerfile +7 -7
Dockerfile
CHANGED
@@ -13,20 +13,20 @@ ENV MYSQL_PASSWORD=Rakuten
|
|
13 |
# Définir le nom d'hôte
|
14 |
ENV HOSTNAME=demosthene-or-rakuten-mysql.hf.space
|
15 |
|
16 |
-
# Set up a new user named "user" with user ID 1000
|
17 |
-
RUN useradd -m -u 1000 user
|
18 |
-
|
19 |
-
# Switch to the "user" user
|
20 |
-
USER user
|
21 |
-
|
22 |
# Modifier le fichier de configuration pour autoriser les connexions distantes
|
23 |
RUN sed -i 's/127.0.0.1/0.0.0.0/g' /etc/my.cnf
|
24 |
|
25 |
# Expose the MySQL port
|
26 |
-
|
27 |
|
28 |
# RUN mysqld --verbose --help
|
29 |
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
RUN chmod 777 -R /var
|
31 |
# Afficher tous les fichiers du conteneur pendant la construction de l'image
|
32 |
RUN ls -R /
|
|
|
13 |
# Définir le nom d'hôte
|
14 |
ENV HOSTNAME=demosthene-or-rakuten-mysql.hf.space
|
15 |
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
# Modifier le fichier de configuration pour autoriser les connexions distantes
|
17 |
RUN sed -i 's/127.0.0.1/0.0.0.0/g' /etc/my.cnf
|
18 |
|
19 |
# Expose the MySQL port
|
20 |
+
EXPOSE 3306
|
21 |
|
22 |
# RUN mysqld --verbose --help
|
23 |
|
24 |
+
# Set up a new user named "user" with user ID 1000
|
25 |
+
RUN useradd -m -u 1000 user
|
26 |
+
|
27 |
+
# Switch to the "user" user
|
28 |
+
USER user
|
29 |
+
|
30 |
RUN chmod 777 -R /var
|
31 |
# Afficher tous les fichiers du conteneur pendant la construction de l'image
|
32 |
RUN ls -R /
|