mirror of
https://github.com/verilator/verilator.git
synced 2025-01-10 08:37:35 +00:00
10 lines
413 B
Plaintext
10 lines
413 B
Plaintext
|
#!/bin/bash
|
||
|
# DESCRIPTION: Docker hub hook to pass SOURCE_COMMIT
|
||
|
#
|
||
|
# Copyright 2020 by Stefan Wallentowitz. This program is free
|
||
|
# software; you can redistribute it and/or modify it under the terms
|
||
|
# of either the GNU Lesser General Public License Version 3 or the
|
||
|
# Perl Artistic License Version 2.0.FROM ubuntu:18.04
|
||
|
|
||
|
docker build --build-arg SOURCE_COMMIT=${SOURCE_COMMIT} -f $DOCKERFILE_PATH -t $IMAGE_NAME .
|