stack-service-base 0.0.29 → 0.0.30
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.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: eb8b4f46677477107c3b81599f2577fda616795a5d2b79d6ab995d71f1096eca
|
4
|
+
data.tar.gz: 5718b6036d8697e49172d83bced90eb22d485b789d20834bb4cd4e14594d7a46
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 30edc8cc1fb63c6fd0bfd52ebdfa50c4332394c5f8fd1d803c80c41164ba7a25fa5f050cbe23a7913cfcf1351fcb04714a166221a9e55542dcf702a851fae947
|
7
|
+
data.tar.gz: 9b8a4e5e477f7a05bea905c58fe412bd628449a3750e947df7b72381be5d282160b8294ed6a818a0cab6882ace5a29ed92363dec126bb505e575944aef63d899
|
@@ -17,6 +17,8 @@ COPY . /app
|
|
17
17
|
ENV RACK_ENV=production NODE_ENV=production
|
18
18
|
RUN rake -T | grep 'rake build' && rake build || echo 'no build task'
|
19
19
|
|
20
|
+
# used in .gitlab-ci.yml Tests.
|
21
|
+
FROM base AS tests
|
20
22
|
RUN bundle exec rspec
|
21
23
|
|
22
24
|
FROM ruby:3.4.4-slim-bookworm AS deploy
|
@@ -25,6 +27,9 @@ RUN apt update && apt install --fix-missing -y bash curl libssl-dev bash curl wg
|
|
25
27
|
|
26
28
|
COPY --from=base /usr/local/bundle /usr/local/bundle
|
27
29
|
|
30
|
+
# Force start & wait test Stage
|
31
|
+
# COPY --from=tests /app/src/spec/results /app/src/spec/results
|
32
|
+
|
28
33
|
COPY . /app
|
29
34
|
|
30
35
|
ENV RUBY_YJIT_ENABLE=1 \
|
data/lib/version.rb
CHANGED