Radek
commited on
Commit
·
546d536
1
Parent(s):
eeb96e4
Add application file 9
Browse files- Dockerfile +18 -7
Dockerfile
CHANGED
@@ -1,5 +1,6 @@
|
|
1 |
# Use the base image
|
2 |
-
FROM meyay/languagetool:latest
|
|
|
3 |
|
4 |
RUN echo "$(pwd)"
|
5 |
RUN echo "----------------------------------------------------"
|
@@ -8,15 +9,25 @@ RUN echo "$(ls -lha)"
|
|
8 |
# Document that the service listens on port 8010
|
9 |
EXPOSE 8010
|
10 |
|
11 |
-
RUN useradd -m -u 1000 languagetool
|
12 |
|
13 |
-
RUN useradd -ms /bin/bash languagetool
|
14 |
|
15 |
-
RUN chown languagetool:languagetool .
|
16 |
-
RUN chmod u+rw .
|
17 |
|
18 |
-
RUN
|
19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
|
21 |
#RUN useradd -m -u 1000 user
|
22 |
#
|
|
|
1 |
# Use the base image
|
2 |
+
#FROM meyay/languagetool:latest
|
3 |
+
FROM erikvl87/languagetool:latest
|
4 |
|
5 |
RUN echo "$(pwd)"
|
6 |
RUN echo "----------------------------------------------------"
|
|
|
9 |
# Document that the service listens on port 8010
|
10 |
EXPOSE 8010
|
11 |
|
|
|
12 |
|
|
|
13 |
|
|
|
|
|
14 |
|
15 |
+
#RUN useradd -m -u 1000 languagetool
|
16 |
+
#
|
17 |
+
#RUN useradd -ms /bin/bash languagetool
|
18 |
+
#
|
19 |
+
#RUN chown languagetool:languagetool .
|
20 |
+
#RUN chmod u+rw .
|
21 |
+
#
|
22 |
+
#RUN chown languagetool:languagetool /entrypoint.sh
|
23 |
+
#RUN chmod u+rw /entrypoint.sh
|
24 |
+
|
25 |
+
|
26 |
+
|
27 |
+
|
28 |
+
|
29 |
+
|
30 |
+
|
31 |
|
32 |
#RUN useradd -m -u 1000 user
|
33 |
#
|