@@ -44,7 +44,7 @@ RUN set -eux; \
44
44
ENV GHOST_INSTALL /var/lib/ghost
45
45
ENV GHOST_CONTENT /var/lib/ghost/content
46
46
47
- ENV GHOST_VERSION 4.44 .0
47
+ ENV GHOST_VERSION 4.46 .0
48
48
49
49
RUN set -eux; \
50
50
mkdir -p "$GHOST_INSTALL" ; \
@@ -72,17 +72,17 @@ RUN set -eux; \
72
72
# see https://github.com/TryGhost/Ghost/pull/7677 for more details
73
73
cd "$GHOST_INSTALL/current" ; \
74
74
# scrape the expected version of sqlite3 directly from Ghost itself
75
- sqlite3Version="$(node -p 'require(" ./package.json").optionalDependencies[" @vscode/ sqlite3"]')" ; \
75
+ sqlite3Version="$(node -p 'require(" ./package.json").optionalDependencies[" sqlite3"]')" ; \
76
76
[ -n "$sqlite3Version" ]; \
77
77
[ "$sqlite3Version" != 'undefined' ]; \
78
- if ! gosu node yarn add "@vscode/ sqlite3@$sqlite3Version" --force; then \
78
+ if ! gosu node yarn add "sqlite3@$sqlite3Version" --force; then \
79
79
# must be some non-amd64 architecture pre-built binaries aren't published for, so let's install some build deps and do-it-all-over-again
80
80
savedAptMark="$(apt-mark showmanual)" ; \
81
81
apt-get update; \
82
82
apt-get install -y --no-install-recommends g++ gcc libc-dev libvips-dev make python2; \
83
83
rm -rf /var/lib/apt/lists/*; \
84
84
\
85
- npm_config_python='python2' gosu node yarn add "@vscode/ sqlite3@$sqlite3Version" --force --build-from-source; \
85
+ npm_config_python='python2' gosu node yarn add "sqlite3@$sqlite3Version" --force --build-from-source; \
86
86
\
87
87
apt-mark showmanual | xargs apt-mark auto > /dev/null; \
88
88
[ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; \
0 commit comments