Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +8 -0
Dockerfile
CHANGED
|
@@ -1,5 +1,13 @@
|
|
| 1 |
FROM cboulanger/pdf-tei-editor:v0.9.0
|
| 2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
COPY --chown=root entrypoint.sh /entrypoint.sh
|
| 4 |
RUN chmod 777 /entrypoint.sh
|
| 5 |
# RUN chmod 777 /app
|
|
|
|
| 1 |
FROM cboulanger/pdf-tei-editor:v0.9.0
|
| 2 |
|
| 3 |
+
RUN apt-get update && \
|
| 4 |
+
apt-get install -y \
|
| 5 |
+
bash \
|
| 6 |
+
git git-lfs \
|
| 7 |
+
wget curl procps \
|
| 8 |
+
htop vim nano && \
|
| 9 |
+
rm -rf /var/lib/apt/lists/*
|
| 10 |
+
|
| 11 |
COPY --chown=root entrypoint.sh /entrypoint.sh
|
| 12 |
RUN chmod 777 /entrypoint.sh
|
| 13 |
# RUN chmod 777 /app
|