We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 314424b commit 18c0315Copy full SHA for 18c0315
Dockerfile
@@ -13,7 +13,7 @@
13
# You should have received a copy of the GNU Affero General Public License
14
# along with this program. If not, see <http://www.gnu.org/licenses/>.
15
16
-
+# build stage
17
FROM rust:1.67.0-bullseye as build
18
19
LABEL org.opencontainers.image.title="Parseable"
@@ -28,9 +28,10 @@ RUN cargo build --release
28
29
RUN mkdir -p /app/lib
30
RUN cp -LR $(ldd /parseable/target/release/parseable | grep "=>" | cut -d ' ' -f 3) /app/lib
31
-RUN ls -la /app/lib
32
+# run stage
33
FROM gcr.io/distroless/cc-debian11:nonroot
34
+
35
ENV LD_LIBRARY_PATH=/app/lib
36
37
WORKDIR /parseable
0 commit comments