Spaces:
Runtime error
Runtime error
shamik commited on
feat: adding build essentials and other packages to the dockerfile.
Browse files- Dockerfile.dockerfile +7 -1
Dockerfile.dockerfile
CHANGED
|
@@ -7,7 +7,13 @@ COPY --link --chown=1000 . .
|
|
| 7 |
|
| 8 |
RUN mkdir -p /tmp/cache/
|
| 9 |
RUN chmod a+rwx -R /tmp/cache/
|
| 10 |
-
RUN apt-get update && apt-get install -y poppler-utils ca-certificates curl gnupg
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
|
| 12 |
COPY . /app
|
| 13 |
|
|
|
|
| 7 |
|
| 8 |
RUN mkdir -p /tmp/cache/
|
| 9 |
RUN chmod a+rwx -R /tmp/cache/
|
| 10 |
+
RUN apt-get update && apt-get install -y poppler-utils ca-certificates curl gnupg build-essential \
|
| 11 |
+
gcc \
|
| 12 |
+
g++ \
|
| 13 |
+
make \
|
| 14 |
+
libffi-dev \
|
| 15 |
+
libssl-dev \
|
| 16 |
+
&& rm -rf /var/lib/apt/lists/*
|
| 17 |
|
| 18 |
COPY . /app
|
| 19 |
|