Skip to content

Commit

Permalink
feat: build for release
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Dec 13, 2023
1 parent 3e6dee0 commit 1f8a651
Show file tree
Hide file tree
Showing 5 changed files with 1,536 additions and 1,358 deletions.
48 changes: 16 additions & 32 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,50 +4,34 @@ updates:
directory: '/'
schedule:
interval: monthly
reviewers:
- artis3n
assignees:
- artis3n
commit-message:
prefix: fix
prefix-development: chore
include: scope
groups:
all:
patterns:
- "*"

- package-ecosystem: github-actions
directory: '/'
schedule:
interval: monthly
reviewers:
- artis3n
assignees:
- artis3n
commit-message:
prefix: fix
prefix-development: chore
include: scope
groups:
all:
patterns:
- "*"

- package-ecosystem: docker
directory: '/'
schedule:
interval: monthly
reviewers:
- artis3n
assignees:
- artis3n
commit-message:
prefix: fix
prefix-development: chore
include: scope
groups:
all:
patterns:
- "*"

- package-ecosystem: pip
directory: '/'
schedule:
interval: monthly
reviewers:
- artis3n
assignees:
- artis3n
commit-message:
prefix: fix
prefix-development: chore
include: scope
groups:
all:
patterns:
- "*"
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [pull_request]

env:
RUNNER_TEMP: /tmp
TEST_ARTIFACT_VERSION: 0.9.1
TEST_ARTIFACT_VERSION: 0.10.1

jobs:
local_tests:
Expand Down
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM node:18-slim AS builder
FROM node:20-slim AS builder

WORKDIR /app
COPY package*.json ./
RUN npm ci
COPY . ./
RUN npm run build

FROM node:18-slim AS runner
FROM node:20-slim AS runner

# Required for python inside Docker containers
ENV LC_ALL C.UTF-8
Expand All @@ -22,12 +22,12 @@ RUN apt-get update \
&& rm -rf /var/lib/apt/lists/*

RUN npm install -g npm \
&& python3 -m pip install --no-cache-dir --upgrade pip
&& python3 -m pip install --no-cache-dir --upgrade --break-system-packages pip

WORKDIR /app

COPY requirements.txt ./
RUN python3 -m pip install --no-cache-dir -r requirements.txt
RUN python3 -m pip install --no-cache-dir --break-system-packages -r requirements.txt

COPY --from=builder /app/dist ./dist
COPY package*.json ./
Expand Down
2 changes: 1 addition & 1 deletion fake_collection/galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace: artis3n
name: test_resource_do_not_use
version: 2.9.1
version: 2.10.1
readme: README.md
authors:
- Ari Kalfus (@artis3n) <dev@artis3nal.com>
Expand Down
Loading

0 comments on commit 1f8a651

Please sign in to comment.