Skip to content
This repository was archived by the owner on Dec 9, 2023. It is now read-only.

Commit 55faafc

Browse files
committed
Dockerfile: adding SQLite support
1 parent d8808fe commit 55faafc

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Dockerfile

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
ARG BUILDER_DIR=/srv/rgb
22

33

4-
FROM rustlang/rust:stable-slim as builder
4+
FROM rust:1.47.0-slim-buster as builder
55

66
ARG SRC_DIR=/usr/local/src/rgb
77
ARG BUILDER_DIR
88

99
RUN apt-get update \
1010
&& apt-get -y install --no-install-recommends \
11-
build-essential cmake libpq-dev libssl-dev libzmq3-dev pkg-config
11+
build-essential cmake git pkg-config \
12+
libpq-dev libssl-dev libzmq3-dev libsqlite3-dev
1213

1314
WORKDIR "$SRC_DIR"
1415

@@ -27,6 +28,7 @@ ARG USER=rgbd
2728

2829
RUN apt-get update \
2930
&& apt-get -y install --no-install-recommends \
31+
libsqlite3-0 \
3032
libssl1.1 \
3133
tini \
3234
&& apt-get clean \

0 commit comments

Comments
 (0)