Skip to content

Commit de40930

Browse files
committed
temp
1 parent 1243ac8 commit de40930

File tree

2,425 files changed

+1581
-226335
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,425 files changed

+1581
-226335
lines changed

Dockerfile.ace

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
FROM node:20-slim
2+
3+
# Install Chromium instead of Google Chrome
4+
RUN apt-get update \
5+
&& apt-get install -y \
6+
chromium \
7+
curl \
8+
gnupg \
9+
&& rm -rf /var/lib/apt/lists/*
10+
11+
# Tell Puppeteer where to find it
12+
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true
13+
ENV PUPPETEER_EXECUTABLE_PATH=/usr/bin/chromium
14+
15+
WORKDIR /usr/src/app
16+
17+
COPY ./package*.json ./
18+
19+
RUN npm install
20+
21+
RUN mkdir ./src
22+
COPY src/ ./src
23+
COPY ./tsconfig.json ./
24+
25+
RUN npm run build
26+
27+
EXPOSE 3000
28+
29+
CMD ["node", "dist/server.js"]
30+
31+
32+
33+
34+
35+

ace-engine/LICENSE renamed to LICENSE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -200,3 +200,4 @@
200200
See the License for the specific language governing permissions and
201201
limitations under the License.
202202

203+
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ Unless required by applicable law or agreed to in writing, software
1010
distributed under the License is distributed on an "AS IS" BASIS,
1111
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
See the License for the specific language governing permissions and
13-
limitations under the License.
13+
limitations under the License.

README.md

Lines changed: 0 additions & 158 deletions
This file was deleted.

ace-engine/.gitignore

Lines changed: 0 additions & 4 deletions
This file was deleted.

ace-engine/.npmrc

Lines changed: 0 additions & 1 deletion
This file was deleted.

ace-engine/.travis.yml

Lines changed: 0 additions & 22 deletions
This file was deleted.

ace-engine/.vscode/launch.json

Lines changed: 0 additions & 17 deletions
This file was deleted.

ace-engine/.vscode/settings.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

ace-engine/.vscode/tasks.json

Lines changed: 0 additions & 20 deletions
This file was deleted.

0 commit comments

Comments
 (0)