@akanjs/config 0.9.4 → 0.9.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cjs/src/akanConfig.js +1 -4
- package/esm/src/akanConfig.js +1 -4
- package/package.json +1 -1
package/cjs/src/akanConfig.js
CHANGED
|
@@ -45,12 +45,9 @@ const makeAppConfig = (config, props) => {
|
|
|
45
45
|
backend: {
|
|
46
46
|
dockerfile: config.backend?.dockerfile ?? `FROM node:22-slim
|
|
47
47
|
RUN ln -sf /usr/share/zoneinfo/Asia/Seoul /etc/localtime
|
|
48
|
-
RUN apt-get update && apt-get upgrade -y
|
|
49
|
-
RUN apt-get install -y ca-certificates fonts-liberation libappindicator3-1 libasound2 libatk-bridge2.0-0 libatk1.0-0 libc6 libcairo2 libcups2 libdbus-1-3 libexpat1 libfontconfig1 libgbm1 libgcc1 libglib2.0-0 libgtk-3-0 libnspr4 libnss3 libpango-1.0-0 libpangocairo-1.0-0 libstdc++6 libx11-6 libx11-xcb1 libxcb1 libxcomposite1 libxcursor1 libxdamage1 libxext6 libxfixes3 libxi6 libxrandr2 libxrender1 libxss1 libxtst6 lsb-release wget xdg-utils udev ffmpeg
|
|
48
|
+
RUN apt-get update && apt-get upgrade -y && apt-get install -y git redis build-essential python3 ca-certificates fonts-liberation libappindicator3-1 libasound2 libatk-bridge2.0-0 libatk1.0-0 libc6 libcairo2 libcups2 libdbus-1-3 libexpat1 libfontconfig1 libgbm1 libgcc1 libglib2.0-0 libgtk-3-0 libnspr4 libnss3 libpango-1.0-0 libpangocairo-1.0-0 libstdc++6 libx11-6 libx11-xcb1 libxcb1 libxcomposite1 libxcursor1 libxdamage1 libxext6 libxfixes3 libxi6 libxrandr2 libxrender1 libxss1 libxtst6 lsb-release wget xdg-utils udev ffmpeg && rm -rf /var/lib/apt/lists/*
|
|
50
49
|
ARG TARGETARCH
|
|
51
50
|
RUN if [ "$TARGETARCH" = "amd64" ]; then wget https://fastdl.mongodb.org/tools/db/mongodb-database-tools-debian92-x86_64-100.3.1.deb && apt-get install -y ./mongodb-database-tools-*.deb && rm -f mongodb-database-tools-*.deb; fi
|
|
52
|
-
RUN apt-get install -y git redis build-essential python3
|
|
53
|
-
RUN rm -rf /var/lib/apt/lists/*
|
|
54
51
|
RUN mkdir -p /workspace
|
|
55
52
|
WORKDIR /workspace
|
|
56
53
|
COPY ./package.json ./package.json
|
package/esm/src/akanConfig.js
CHANGED
|
@@ -9,12 +9,9 @@ const makeAppConfig = (config, props) => {
|
|
|
9
9
|
backend: {
|
|
10
10
|
dockerfile: config.backend?.dockerfile ?? `FROM node:22-slim
|
|
11
11
|
RUN ln -sf /usr/share/zoneinfo/Asia/Seoul /etc/localtime
|
|
12
|
-
RUN apt-get update && apt-get upgrade -y
|
|
13
|
-
RUN apt-get install -y ca-certificates fonts-liberation libappindicator3-1 libasound2 libatk-bridge2.0-0 libatk1.0-0 libc6 libcairo2 libcups2 libdbus-1-3 libexpat1 libfontconfig1 libgbm1 libgcc1 libglib2.0-0 libgtk-3-0 libnspr4 libnss3 libpango-1.0-0 libpangocairo-1.0-0 libstdc++6 libx11-6 libx11-xcb1 libxcb1 libxcomposite1 libxcursor1 libxdamage1 libxext6 libxfixes3 libxi6 libxrandr2 libxrender1 libxss1 libxtst6 lsb-release wget xdg-utils udev ffmpeg
|
|
12
|
+
RUN apt-get update && apt-get upgrade -y && apt-get install -y git redis build-essential python3 ca-certificates fonts-liberation libappindicator3-1 libasound2 libatk-bridge2.0-0 libatk1.0-0 libc6 libcairo2 libcups2 libdbus-1-3 libexpat1 libfontconfig1 libgbm1 libgcc1 libglib2.0-0 libgtk-3-0 libnspr4 libnss3 libpango-1.0-0 libpangocairo-1.0-0 libstdc++6 libx11-6 libx11-xcb1 libxcb1 libxcomposite1 libxcursor1 libxdamage1 libxext6 libxfixes3 libxi6 libxrandr2 libxrender1 libxss1 libxtst6 lsb-release wget xdg-utils udev ffmpeg && rm -rf /var/lib/apt/lists/*
|
|
14
13
|
ARG TARGETARCH
|
|
15
14
|
RUN if [ "$TARGETARCH" = "amd64" ]; then wget https://fastdl.mongodb.org/tools/db/mongodb-database-tools-debian92-x86_64-100.3.1.deb && apt-get install -y ./mongodb-database-tools-*.deb && rm -f mongodb-database-tools-*.deb; fi
|
|
16
|
-
RUN apt-get install -y git redis build-essential python3
|
|
17
|
-
RUN rm -rf /var/lib/apt/lists/*
|
|
18
15
|
RUN mkdir -p /workspace
|
|
19
16
|
WORKDIR /workspace
|
|
20
17
|
COPY ./package.json ./package.json
|