Skip to content

Commit 18c0315

Browse files
committed
temp
1 parent 314424b commit 18c0315

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# You should have received a copy of the GNU Affero General Public License
1414
# along with this program. If not, see <http://www.gnu.org/licenses/>.
1515

16-
16+
# build stage
1717
FROM rust:1.67.0-bullseye as build
1818

1919
LABEL org.opencontainers.image.title="Parseable"
@@ -28,9 +28,10 @@ RUN cargo build --release
2828

2929
RUN mkdir -p /app/lib
3030
RUN cp -LR $(ldd /parseable/target/release/parseable | grep "=>" | cut -d ' ' -f 3) /app/lib
31-
RUN ls -la /app/lib
3231

32+
# run stage
3333
FROM gcr.io/distroless/cc-debian11:nonroot
34+
3435
ENV LD_LIBRARY_PATH=/app/lib
3536

3637
WORKDIR /parseable

0 commit comments

Comments
 (0)