Skip to content

Commit 68ad0d9

Browse files
authored
Merge pull request #484 from root-gg/upgrade_docker_versions
Upgrade alpine and node Docker images version
2 parents e8c7377 + b5b209b commit 68ad0d9

File tree

3 files changed

+28
-6
lines changed

3 files changed

+28
-6
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
##################################################################################
2-
FROM --platform=$BUILDPLATFORM node:19-alpine AS plik-frontend-builder
2+
FROM --platform=$BUILDPLATFORM node:20-alpine AS plik-frontend-builder
33

44
# Install needed binaries
55
RUN apk add --no-cache git make bash
@@ -43,7 +43,7 @@ FROM scratch AS plik-release-archive
4343
COPY --from=plik-builder --chown=1000:1000 /go/src/github.com/root-gg/plik/plik-*.tar.gz /
4444

4545
##################################################################################
46-
FROM alpine:3.17 AS plik-image
46+
FROM alpine:3.18 AS plik-image
4747

4848
RUN apk add --no-cache ca-certificates
4949

@@ -65,4 +65,4 @@ COPY --from=plik-builder --chown=1000:1000 /go/src/github.com/root-gg/plik/relea
6565
EXPOSE 8080
6666
USER plik
6767
WORKDIR /home/plik/server
68-
CMD ./plikd
68+
CMD ./plikd

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ Plik is a scalable & friendly temporary file upload system (Wetransfer like) in
5151
##### From release
5252
To run plik, it's very simple :
5353
```sh
54-
$ wget https://github.com/root-gg/plik/releases/download/1.3.6/plik-1.3.6-linux-amd64.tar.gz
55-
$ tar xzvf plik-1.3.6-linux-amd64.tar.gz
56-
$ cd plik-1.3.6-linux-amd64/server
54+
$ wget https://github.com/root-gg/plik/releases/download/1.3.7/plik-1.3.6-linux-amd64.tar.gz
55+
$ tar xzvf plik-1.3.7-linux-amd64.tar.gz
56+
$ cd plik-1.3.7-linux-amd64/server
5757
$ ./plikd
5858
```
5959
Et voilà ! You now have a fully functional instance of Plik running on http://127.0.0.1:8080.

changelog/1.3.7

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Plik 1.3.7
2+
3+
Hi, today we're releasing Plik 1.3.7 !
4+
Here is the changelog :
5+
6+
New :
7+
- Create/Edit users settings from web UI
8+
- Add Text button to open the copy paste dialog
9+
- Add maxFileSize and maxTTL default values to admin view
10+
11+
Fix :
12+
- Fix create empty upload with authentication forced
13+
- Automatically strip server URL trailing slash in Plik client
14+
- Fix content-type detection for files smaller than 1KB
15+
- Remove empty parent directories in file data backend
16+
- Fix the use of deprecated key derivation
17+
- Make SourceIP middleware remove zone from ip addreses
18+
19+
Binaries have been built with Go 1.20.5
20+
21+
Faithfully,
22+
The plik team

0 commit comments

Comments
 (0)