Create Dockerfile
Browse files- Dockerfile +5 -0
Dockerfile
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
FROM registry.fit2cloud.com/maxkb/maxkb
|
| 2 |
+
RUN mkdir -p /var/lib/postgresql/data
|
| 3 |
+
RUN chmod 777 -R /var/lib/postgresql/data
|
| 4 |
+
RUN mkdir -p /opt/maxkb/app/sandbox/python-packages
|
| 5 |
+
RUN chmod 777 -R /opt/maxkb/app/sandbox/python-packages
|