Skip to content

Commit

Permalink
Update Docker to alpine:3.19.1 and node:18-alpine
Browse files Browse the repository at this point in the history
  • Loading branch information
kcaran committed May 27, 2024
1 parent 14f4f16 commit 63500d5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN cd shaarli \

# Stage 3:
# - Frontend dependencies
FROM docker.io/node:12-alpine as node
FROM docker.io/node:18-alpine as node
COPY --from=composer /app/shaarli shaarli
RUN cd shaarli \
&& yarnpkg install \
Expand All @@ -25,7 +25,7 @@ RUN cd shaarli \

# Stage 4:
# - Shaarli image
FROM docker.io/alpine:3.18.6
FROM docker.io/alpine:3.19.1
LABEL maintainer="Shaarli Community"

RUN apk --update --no-cache add \
Expand Down
2 changes: 1 addition & 1 deletion doc/md/dev/Development.md
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ Unit tests can be run inside [Docker](../Docker.md) containers.

Test Dockerfiles are located under `tests/docker/<distribution>/Dockerfile`, and can be used to build Docker images to run Shaarli test suites under commonLinux environments. Dockerfiles are provided for the following environments:

- [`alpine318`](https://github.com/shaarli/Shaarli/blob/master/tests/docker/alpine318/Dockerfile) - [Alpine Linux 3.18](https://www.alpinelinux.org/downloads/)
- [`alpine319`](https://github.com/shaarli/Shaarli/blob/master/tests/docker/alpine319/Dockerfile) - [Alpine Linux 3.18](https://www.alpinelinux.org/downloads/)
- [`debian8`](https://github.com/shaarli/Shaarli/blob/master/tests/docker/debian8/Dockerfile) - [Debian 8 Jessie](https://wiki.debian.org/DebianJessie) (oldoldstable)
- [`debian9`](https://github.com/shaarli/Shaarli/blob/master/tests/docker/debian9/Dockerfile) - [Debian 9 Stretch](https://wiki.debian.org/DebianStretch) (oldstable)
- [`ubuntu16`](https://github.com/shaarli/Shaarli/blob/master/tests/docker/ubuntu16/Dockerfile) - [Ubuntu 16.04 Xenial Xerus](https://releases.ubuntu.com/16.04/) (old LTS)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/alpine:3.18
FROM docker.io/alpine:3.19.1
MAINTAINER Shaarli Community

RUN apk --update --no-cache add \
Expand Down

0 comments on commit 63500d5

Please sign in to comment.