Skip to content

Commit

Permalink
Bump versions to make Docker build
Browse files Browse the repository at this point in the history
  • Loading branch information
sissbruecker committed Jan 26, 2025
1 parent d1dd855 commit 1624128
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions docker/alpine.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-alpine AS node-build
FROM node:18-alpine AS node-build
WORKDIR /etc/linkding
# install build dependencies
COPY rollup.config.mjs postcss.config.js package.json package-lock.json ./
Expand All @@ -10,7 +10,7 @@ COPY bookmarks/styles ./bookmarks/styles
RUN npm run build


FROM python:3.12.6-alpine3.20 AS build-deps
FROM python:3.12.8-alpine3.21 AS build-deps
# Add required packages
# alpine-sdk linux-headers pkgconfig: build Python packages from source
# libpq-dev: build Postgres client from source
Expand Down Expand Up @@ -49,7 +49,7 @@ RUN wget https://www.sqlite.org/${SQLITE_RELEASE_YEAR}/sqlite-amalgamation-${SQL
gcc -fPIC -shared icu.c `pkg-config --libs --cflags icu-uc icu-io` -o libicu.so


FROM python:3.12.6-alpine3.20 AS linkding
FROM python:3.12.8-alpine3.21 AS linkding
LABEL org.opencontainers.image.source="https://github.com/sissbruecker/linkding"
# install runtime dependencies
RUN apk update && apk add bash curl icu libpq mailcap libssl3
Expand Down
6 changes: 3 additions & 3 deletions docker/default.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-alpine AS node-build
FROM node:18-alpine AS node-build
WORKDIR /etc/linkding
# install build dependencies
COPY rollup.config.mjs postcss.config.js package.json package-lock.json ./
Expand All @@ -10,7 +10,7 @@ COPY bookmarks/styles ./bookmarks/styles
RUN npm run build


FROM python:3.12.6-slim-bookworm AS build-deps
FROM python:3.12.8-slim-bookworm AS build-deps
# Add required packages
# build-essential pkg-config: build Python packages from source
# libpq-dev: build Postgres client from source
Expand Down Expand Up @@ -51,7 +51,7 @@ RUN wget https://www.sqlite.org/${SQLITE_RELEASE_YEAR}/sqlite-amalgamation-${SQL
gcc -fPIC -shared icu.c `pkg-config --libs --cflags icu-uc icu-io` -o libicu.so


FROM python:3.12.6-slim-bookworm AS linkding
FROM python:3.12.8-slim-bookworm AS linkding
LABEL org.opencontainers.image.source="https://github.com/sissbruecker/linkding"
# install runtime dependencies
RUN apt-get update && apt-get -y install mime-support libpq-dev libicu-dev libssl3 curl
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ urllib3==2.2.3
# via
# requests
# waybackpy
uwsgi==2.0.26
uwsgi==2.0.28
# via -r requirements.in
waybackpy==3.0.6
# via -r requirements.in
Expand Down

0 comments on commit 1624128

Please sign in to comment.