Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix default branch name to main #28

Merged
merged 1 commit into from
Jan 3, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-latest.yml
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ name: Build and Deploy Latest
on:
push:
branches:
- 'master'
- 'main'

jobs:


Unchanged files with check annotations Beta

# BUILD
# =====
FROM ubuntu:22.04 as buildstep

Check warning on line 3 in Dockerfile

GitHub Actions / build / docker

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/
LABEL maintainer="Richard Bullington-McGuire <richard@obscure.org>"
RUN apt-get update \
# DEPLOY
# =====
FROM ubuntu:22.04 as deploystep

Check warning on line 24 in Dockerfile

GitHub Actions / build / docker

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/
LABEL maintainer="Richard Bullington-McGuire <richard@obscure.org>"
RUN apt-get update \
RUN pip3 install --use-deprecated=legacy-resolver /tmp/wheels/*
EXPOSE 8000
ENTRYPOINT gunicorn --bind 0.0.0.0:8000 'freezing.nq.app:make_app()'

Check warning on line 41 in Dockerfile

GitHub Actions / build / docker

JSON arguments recommended for ENTRYPOINT/CMD to prevent unintended behavior related to OS signals

JSONArgsRecommended: JSON arguments recommended for ENTRYPOINT to prevent unintended behavior related to OS signals More info: https://docs.docker.com/go/dockerfile/rule/json-args-recommended/