Skip to content

Commit aae8fef

Browse files
committed
fixes
1 parent 19a9a8e commit aae8fef

File tree

3 files changed

+31
-31
lines changed

3 files changed

+31
-31
lines changed

Dockerfile

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -4,41 +4,41 @@ ENV DEBIAN_FRONTEND=noninteractive \
44
DISPLAY=:99
55

66
# Install system dependencies
7-
RUN apt-get update && apt-get install -y --no-install-recommends \
8-
wget \
9-
git \
10-
lsof \
11-
xvfb \
12-
gnupg \
13-
ca-certificates \
14-
&& rm -rf /var/lib/apt/lists/*
7+
# RUN apt-get update && apt-get install -y --no-install-recommends \
8+
# wget \
9+
# git \
10+
# lsof \
11+
# xvfb \
12+
# gnupg \
13+
# ca-certificates \
14+
# && rm -rf /var/lib/apt/lists/*
1515

1616
# Install Chromium (works on both AMD64 and ARM64)
17-
RUN apt-get update \
18-
&& apt-get install -y --no-install-recommends chromium \
19-
&& rm -rf /var/lib/apt/lists/* \
20-
&& ln -sf /usr/bin/chromium /usr/bin/google-chrome-stable \
21-
&& ln -sf /usr/bin/chromium /usr/bin/google-chrome
17+
# RUN apt-get update \
18+
# && apt-get install -y --no-install-recommends chromium \
19+
# && rm -rf /var/lib/apt/lists/* \
20+
# && ln -sf /usr/bin/chromium /usr/bin/google-chrome-stable \
21+
# && ln -sf /usr/bin/chromium /usr/bin/google-chrome
2222

2323

2424
# # Install Chrome dependencies
25-
# RUN apt-get update && apt-get install -y \
26-
# wget \
27-
# gnupg2 \
28-
# lsof \
29-
# apt-transport-https \
30-
# ca-certificates \
31-
# x11-utils xdg-utils xvfb \
32-
# software-properties-common \
33-
# && rm -rf /var/lib/apt/lists/*
25+
RUN apt-get update && apt-get install -y \
26+
wget \
27+
gnupg2 \
28+
lsof \
29+
apt-transport-https \
30+
ca-certificates \
31+
x11-utils xdg-utils xvfb \
32+
software-properties-common \
33+
&& rm -rf /var/lib/apt/lists/*
3434

35-
# # Add the Google Chrome repository
36-
# RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \
37-
# && echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list
35+
# Add the Google Chrome repository
36+
RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \
37+
&& echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list
3838

39-
# # Install Google Chrome
40-
# RUN apt-get update && apt-get install -y google-chrome-stable \
41-
# && rm -rf /var/lib/apt/lists/*
39+
# Install Google Chrome
40+
RUN apt-get update && apt-get install -y google-chrome-stable \
41+
&& rm -rf /var/lib/apt/lists/*
4242

4343

4444
WORKDIR /app

release/app/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

release/app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "todo-my-app-name",
3-
"version": "1.29.0",
3+
"version": "1.30.0",
44
"description": "Todo my app description",
55
"license": "MIT",
66
"main": "./dist/main/main.js",

0 commit comments

Comments
 (0)