File tree Expand file tree Collapse file tree 6 files changed +5882
-2958
lines changed Expand file tree Collapse file tree 6 files changed +5882
-2958
lines changed Original file line number Diff line number Diff line change 1
- FROM node:20 -bookworm-slim as base
1
+ FROM node:24 -bookworm-slim as base
2
2
3
3
RUN apt-get update && apt-get install -y git
4
4
@@ -16,6 +16,6 @@ ADD . .
16
16
RUN npm install --omit=dev
17
17
18
18
CMD rm -rf ${EPICSHOP_CONTEXT_CWD} && \
19
- git clone https://github.com/epicweb-dev/e2e-react-application-testing-with-playwright ${EPICSHOP_CONTEXT_CWD} && \
19
+ git clone --depth 1 https://github.com/epicweb-dev/e2e-react-application-testing-with-playwright ${EPICSHOP_CONTEXT_CWD} && \
20
20
cd ${EPICSHOP_CONTEXT_CWD} && \
21
21
npx epicshop start
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ # fly.yaml app configuration file generated for epicweb-dev-advanced-mcp-features on 2025-07-11T10:06:25-06:00
2
+ #
3
+ # See https://fly.io/docs/reference/configuration/ for information about how to use this file.
4
+ #
5
+
6
+ app : ' epicweb-dev-e2e-react-application-testing-with-playwright'
7
+ primary_region : sjc
8
+ kill_signal : SIGINT
9
+ kill_timeout : 5s
10
+ swap_size_mb : 512
11
+
12
+ experimental :
13
+ auto_rollback : true
14
+
15
+ attached :
16
+ secrets : {}
17
+
18
+ services :
19
+ - processes :
20
+ - app
21
+ protocol : tcp
22
+ internal_port : 8080
23
+
24
+ ports :
25
+ - port : 80
26
+
27
+ handlers :
28
+ - http
29
+ force_https : true
30
+ - port : 443
31
+
32
+ handlers :
33
+ - tls
34
+ - http
35
+
36
+ concurrency :
37
+ type : connections
38
+ hard_limit : 100
39
+ soft_limit : 80
40
+
41
+ tcp_checks :
42
+ - interval : 15s
43
+ timeout : 2s
44
+ grace_period : 1s
45
+
46
+ http_checks :
47
+ - interval : 10s
48
+ timeout : 2s
49
+ grace_period : 5s
50
+ method : get
51
+ path : /resources/healthcheck
52
+ protocol : http
53
+ tls_skip_verify : false
You can’t perform that action at this time.
0 commit comments