Skip to content

Commit

Permalink
Building docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
jurajmajer committed Jul 22, 2024
1 parent 1ecbc66 commit 0802d06
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 4 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/build-docker-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Build Docker Image

# Configures this workflow to run manually.
on: workflow_dispatch

# Defines two custom environment variables for the workflow. These are used for the Container registry domain, and a name for the Docker image that this workflow builds.
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}/enrico:1.00

# There is a single job in this workflow. It's configured to run on the latest available version of Ubuntu.
jobs:
build-and-push-image:
runs-on: ubuntu-latest
# Sets the permissions granted to the `GITHUB_TOKEN` for the actions in this job.
permissions:
contents: read
packages: write

steps:
- name: Checkout repository
uses: actions/checkout@v4

# Uses the `docker/login-action` action to log in to the Container registry using the account and password that will publish the packages. Once published, the packages are scoped to the account defined here.
- name: Log in to the Container registry
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

# This step uses the `docker/build-push-action` action to build the image, based on your repository's `Dockerfile`. If the build succeeds, it pushes the image to GitHub Packages.
# It uses the `context` parameter to define the build's context as the set of files located in the specified path. For more information, see "[Usage](https://github.com/docker/build-push-action#usage)" in the README of the `docker/build-push-action` repository.
- name: Build and push Docker image
uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4
with:
context: .
push: true
file: ./Dockerfile
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
7 changes: 7 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
FROM php:8.3-apache
RUN docker-php-ext-install calendar && docker-php-ext-configure calendar
COPY holiday_library/ /var/www/html/holiday_library
COPY ics/ /var/www/html/ics
COPY json/ /var/www/html/json
COPY ws/ /var/www/html/ws
EXPOSE 80
8 changes: 4 additions & 4 deletions holiday_library/utils/LunarPhasesUtils.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ private function getNextMoonPhase($date, $countryCode, $moonPhase) {
$nextMoonPhase = $moonPhaseCalculator->next_full_moon();
}
}
$retVal = new EnricoDate(date("j", $nextMoonPhase), date("n", $nextMoonPhase), date("Y", $nextMoonPhase));
$retVal->hour = date("G", $nextMoonPhase);
$retVal->minute = date("i", $nextMoonPhase);
$retVal->second = date("s", $nextMoonPhase);
$retVal = new EnricoDate(date("j", intval($nextMoonPhase)), date("n", intval($nextMoonPhase)), date("Y", intval($nextMoonPhase)));
$retVal->hour = date("G", intval($nextMoonPhase));
$retVal->minute = date("i", intval($nextMoonPhase));
$retVal->second = date("s", intval($nextMoonPhase));
$retVal = $this->dateUtils->addSeconds($retVal, DateUtils::$diffToUTC[$countryCode] * 60 * 60);

date_default_timezone_set($system_timezone);
Expand Down

0 comments on commit 0802d06

Please sign in to comment.