Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
theRealBassist committed Nov 22, 2023
2 parents 64ca49e + 00c4143 commit d225d6d
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Docker Image CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:

build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Build the Docker image
run: docker build . --file Dockerfile --tag metadatatoutm:$(date +%s)
6 changes: 6 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
FROM python:3.11

ADD MetadataToUTM.py .
RUN pip install natsort GPSPhoto tablib

CMD {"python", "MetadataToUTM.py"}

0 comments on commit d225d6d

Please sign in to comment.