Skip to content

Commit c853869

Browse files
committed
Update to NATS 3.1, Money 1.0.2
1 parent c2c5c4b commit c853869

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

AlpineTclBatteriesIncluded/Dockerfile

+8-6
Original file line numberDiff line numberDiff line change
@@ -68,16 +68,18 @@ RUN apk add --no-cache bash gcc musl-dev libpq-dev openssl openssl-dev build-bas
6868
&& mkdir -p ${TCL_BUILD_HOME}/src/ooxml/ \
6969
&& unzip ooxml1.9.zip -d ${TCL_BUILD_HOME}/src/ooxml \
7070
&& cp -r ${TCL_BUILD_HOME}/src/ooxml/ooxml1.9 $TCL_LIB/ \
71-
&& git clone https://github.com/Siqsuruq/money-tcl-package.git ${TCL_BUILD_HOME}/src/money \
72-
&& cp -r ${TCL_BUILD_HOME}/src/money/money $TCL_LIB/ \
71+
&& wget https://github.com/Siqsuruq/money-tcl-package/releases/download/v1.0.2/money-1.0.2.zip \
72+
&& mkdir -p ${TCL_BUILD_HOME}/money \
73+
&& unzip money-1.0.2.zip -d ${TCL_BUILD_HOME}/money \
74+
&& cp -r ${TCL_BUILD_HOME}/money/money $TCL_LIB/ \
7375
&& git clone https://github.com/Siqsuruq/mimext.git ${TCL_BUILD_HOME}/src/mimext \
7476
&& cp -r ${TCL_BUILD_HOME}/src/mimext $TCL_LIB/ \
7577
&& git clone https://github.com/Siqsuruq/hrfilesize.git ${TCL_BUILD_HOME}/src/hrfilesize \
7678
&& cp -r ${TCL_BUILD_HOME}/src/hrfilesize $TCL_LIB/ \
77-
&& wget https://github.com/Kazmirchuk/nats-tcl/archive/refs/tags/v3.0.zip \
79+
&& wget https://github.com/Kazmirchuk/nats-tcl/archive/refs/tags/v3.1.zip \
7880
&& mkdir -p ${TCL_BUILD_HOME}/nats \
79-
&& unzip v3.0.zip -d ${TCL_BUILD_HOME}/nats \
80-
&& cp -r ${TCL_BUILD_HOME}/nats/nats-tcl-3.0 $TCL_LIB/ \
81+
&& unzip v3.1.zip -d ${TCL_BUILD_HOME}/nats \
82+
&& cp -r ${TCL_BUILD_HOME}/nats/nats-tcl-3.1 $TCL_LIB/ \
8183
&& cd / \
8284
&& rm -rf ${TCL_BUILD_HOME} tcl.zip /var/cache/apk/*
8385

@@ -90,7 +92,7 @@ ARG BUILD_DATE
9092
# Metadata using OCI Image Format Specification annotations
9193
LABEL org.opencontainers.image.title="Alpine Tcl batteries-included Image"
9294
LABEL org.opencontainers.image.description="A custom Docker image with Alpine, Tcl, Tcllib and some Tcl packages."
93-
LABEL org.opencontainers.image.version="1.2"
95+
LABEL org.opencontainers.image.version="1.3"
9496
LABEL org.opencontainers.image.created=${BUILD_DATE}
9597
LABEL org.opencontainers.image.authors="[email protected]"
9698
LABEL org.opencontainers.image.vendor="Cloudz"

AlpineTclBatteriesIncluded/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ At this point image brings:
1414
- TclCurl 7.22.0
1515
- vfs 1.4.2
1616
- ooxml 1.9.0
17-
- money 1.0.1
17+
- money 1.0.2
1818
- mimext 1.1.0
1919
- hrfilesize 1.0.0
20-
- nats 3.0
20+
- nats 3.1
2121

2222
### Prerequisites
2323

0 commit comments

Comments
 (0)