Skip to content

Commit 98abaae

Browse files
committed
alpha ver
1 parent aa477a7 commit 98abaae

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

docker/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM amd64/alpine:3.19
1+
FROM amd64/alpine
22
WORKDIR /tmp/thingsdb
33
COPY ./CMakeLists.txt ./CMakeLists.txt
44
COPY ./main.c ./main.c
@@ -11,7 +11,7 @@ RUN apk update && \
1111
LEGACY=1 cmake -DCMAKE_BUILD_TYPE=Release . && \
1212
make
1313

14-
FROM amd64/alpine:latest
14+
FROM amd64/alpine
1515
RUN apk update && \
1616
apk add pcre2 libuv yajl curl tzdata && \
1717
mkdir -p /var/lib/thingsdb

docker/full.Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM google/cloud-sdk:471.0.0
1+
FROM google/cloud-sdk
22
WORKDIR /tmp/thingsdb
33
COPY ./CMakeLists.txt ./CMakeLists.txt
44
COPY ./main.c ./main.c
@@ -16,15 +16,15 @@ RUN apt-get update && apt-get install -y \
1616
LEGACY=1 cmake -DCMAKE_BUILD_TYPE=Release . && \
1717
make
1818

19-
FROM google/cloud-sdk:471.0.0
19+
FROM google/cloud-sdk
2020

2121
RUN mkdir -p /var/lib/thingsdb && \
2222
apt-get update && apt-get install -y \
2323
libuv1 \
2424
libpcre2-8-0 \
2525
libyajl2 \
26-
libcurl3t64-gnutls && \
27-
pip3 install py-timod
26+
libcurl4 && \
27+
pip3 install py-timod --break-system-packages
2828

2929
COPY --from=0 /tmp/thingsdb/thingsdb /usr/local/bin/
3030

docker/gcloud.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM amd64/alpine:3.19
1+
FROM amd64/alpine
22
WORKDIR /tmp/thingsdb
33
COPY ./CMakeLists.txt ./CMakeLists.txt
44
COPY ./main.c ./main.c
@@ -11,7 +11,7 @@ RUN apk update && \
1111
cmake -DCMAKE_BUILD_TYPE=Release . && \
1212
make
1313

14-
FROM google/cloud-sdk:492.0.0-alpine
14+
FROM google/cloud-sdk:alpine
1515
RUN apk update && \
1616
apk add pcre2 libuv yajl curl tzdata && \
1717
mkdir -p /var/lib/thingsdb

docker/tls.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM amd64/alpine:3.19
1+
FROM amd64/alpine
22
WORKDIR /tmp/thingsdb
33
COPY ./CMakeLists.txt ./CMakeLists.txt
44
COPY ./main.c ./main.c

inc/ti/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* "-rc0"
2626
* ""
2727
*/
28-
#define TI_VERSION_PRE_RELEASE ""
28+
#define TI_VERSION_PRE_RELEASE "-alpha0"
2929

3030
#define TI_MAINTAINER \
3131
"Jeroen van der Heijden <jeroen@cesbit.com>"

0 commit comments

Comments
 (0)